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

@corefunc/corefunc

Package Overview
Dependencies
Maintainers
1
Versions
237
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@corefunc/corefunc - npm Package Compare versions

Comparing version 0.0.29 to 0.0.30

5

is/function.ts

@@ -6,3 +6,6 @@ /**

export default function isFunction(value: any): boolean {
return Object.prototype.toString.call(value) === "[object Function]";
if (Object.prototype.toString.call(value) !== "[object Function]") {
return false;
}
return !/^class\s/.test(Function.prototype.toString.call(value));
}

2

package.json

@@ -61,3 +61,3 @@ {

},
"version": "0.0.29"
"version": "0.0.30"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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