Socket
Socket
Sign inDemoInstall

atma-utils

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atma-utils - npm Package Compare versions

Comparing version 0.2.47 to 0.2.48

2

lib/utils.embed.js

@@ -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;

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