Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@fabiospampinato/is

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fabiospampinato/is - npm Package Compare versions

Comparing version 2.2.0 to 2.2.1

2

dist/is_function.d.ts

@@ -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';

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc