atma-utils
Advanced tools
Comparing version 0.2.47 to 0.2.48
@@ -126,3 +126,3 @@ var _Array_slice, | ||
is_rawObject = function (x) { | ||
return x != null && typeof x === 'object' && x.constructor === Object; | ||
return x != null && typeof x === 'object' && (x.constructor === Object || x.constructor == null); | ||
} | ||
@@ -129,0 +129,0 @@ is_Date = function (x) { |
@@ -60,3 +60,3 @@ (function(factory){ | ||
is_rawObject = function (x) { | ||
return x != null && typeof x === 'object' && x.constructor === Object; | ||
return x != null && typeof x === 'object' && (x.constructor === Object || x.constructor == null); | ||
} | ||
@@ -63,0 +63,0 @@ is_Date = function (x) { |
{ | ||
"name": "atma-utils", | ||
"description": "Helpers", | ||
"version": "0.2.47", | ||
"version": "0.2.48", | ||
"author": "Alexander Kit <alex.kit@atmajs.com>", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -29,3 +29,3 @@ "use strict"; | ||
function is_rawObject(x) { | ||
return x != null && typeof x === 'object' && x.constructor === Object; | ||
return x != null && typeof x === 'object' && (x.constructor === Object || x.constructor == null); | ||
} | ||
@@ -32,0 +32,0 @@ exports.is_rawObject = is_rawObject; |
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
276358