New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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.8 to 2.2.9

6

IsA.js

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

},
pick: function (object, predicate, ignore = [] ) {
pick: function (object, predicate, ignore, target ) {
if (!object)

@@ -119,6 +119,6 @@ return {}

if (!Array.isArray(ignore))
if (!ignore || !Array.isArray(ignore))
ignore = Object.keys( ignore )
let res = {}
let res = target || {}
for (let key of predicate)

@@ -125,0 +125,0 @@ if (!ignore.includes(key) && object.hasOwnProperty(key) )

{
"name": "isa.js",
"version": "2.2.8",
"version": "2.2.9",
"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