@fabiospampinato/is
Advanced tools
Comparing version 2.2.0 to 2.2.1
@@ -1,2 +0,2 @@ | ||
declare const isFunction: (value: unknown) => value is (...args: unknown[]) => unknown; | ||
declare const isFunction: (value: unknown) => value is Function; | ||
export default isFunction; |
@@ -5,3 +5,3 @@ { | ||
"description": "The definitive collection of is* functions for runtime type checking. Lodash-compatible, tree-shakable, with types.", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"type": "module", | ||
@@ -8,0 +8,0 @@ "sideEffects": false, |
/* MAIN */ | ||
const isFunction = ( value: unknown ): value is (( ...args: unknown[] ) => unknown) => { | ||
const isFunction = ( value: unknown ): value is Function => { | ||
@@ -6,0 +6,0 @@ return typeof value === 'function'; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
187964