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

isa.js

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

isa.js - npm Package Compare versions

Comparing version 2.2.10 to 2.2.11

14

IsA.js

@@ -128,3 +128,17 @@ var boolTag = '[object Boolean]',

return res
},
functionsOf (obj) {
let res = []
for (let m of Object.getOwnPropertyNames( obj ) )
if ( obj[m] && this.isFunction( obj[m] ) )
res.push( obj[m] )
return res
},
functionsNames (obj) {
let res = []
for (let m of Object.getOwnPropertyNames( obj ) )
if ( obj[m] && this.isFunction( obj[m] ) )
res.push( m )
return res
}
}

2

package.json
{
"name": "isa.js",
"version": "2.2.10",
"version": "2.2.11",
"description": "Very minimal collection is isA functions. isObject, isArray, isDate...",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/imrefazekas/isa",

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