From 163b5a025b1a58a1a9e48a3b7113c91e7939c73a Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Tue, 7 May 2019 18:13:36 +0200 Subject: [PATCH] chore: remove unused function --- src/utils/index.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index fb52bad1..7c50b18d 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -47,10 +47,6 @@ export async function extractComponentsGuards( return guards } -export function last(array: T[]): T { - return array[array.length - 1] -} - export function isRouteLocation(route: any): route is RouteLocation { return typeof route === 'string' || (route && typeof route === 'object') } -- 2.47.2