Comparing version 2.2.14 to 2.2.15
@@ -143,3 +143,5 @@ var boolTag = '[object Boolean]', | ||
let res = [] | ||
for (let m of Object.getOwnPropertyNames( obj ) ) | ||
if (!obj) return res | ||
for (let m in obj) | ||
if ( obj[m] && this.isFunction( obj[m] ) ) | ||
@@ -151,3 +153,5 @@ res.push( obj[m] ) | ||
let res = [] | ||
for (let m of Object.getOwnPropertyNames( obj ) ) | ||
if (!obj) return res | ||
for (let m in obj) | ||
if ( obj[m] && this.isFunction( obj[m] ) ) | ||
@@ -157,4 +161,5 @@ res.push( m ) | ||
} | ||
} | ||
module.exports = Services |
{ | ||
"name": "isa.js", | ||
"version": "2.2.14", | ||
"version": "2.2.15", | ||
"description": "Very minimal collection is isA functions. isObject, isArray, isDate...", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/imrefazekas/isa", |
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
343
13581