Skip to content

Commit 7d53878

Browse files
committed
chore: add typing
1 parent 086a8d6 commit 7d53878

File tree

1 file changed

+1
-1
lines changed
  • packages/runtime/src/templates/edge-shared

1 file changed

+1
-1
lines changed

packages/runtime/src/templates/edge-shared/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,4 +306,4 @@ export const redirectTrailingSlash = (url: URL, trailingSlash: boolean): Respons
306306
}
307307
}
308308

309-
export const isFunction = (f) => Boolean(f) && typeof f === 'function'
309+
export const isFunction = (f: unknown) => Boolean(f) && typeof f === 'function'

0 commit comments

Comments
 (0)