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

@adeira/js

Package Overview
Dependencies
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adeira/js - npm Package Compare versions

Comparing version 1.2.3 to 1.2.4

3

js/CHANGELOG.md
# Unreleased
# 1.2.4
- Extend `isObjectEmpty` to check for non-enumerable properties
# 1.2.0

@@ -4,0 +7,0 @@

4

js/package.json

@@ -9,7 +9,7 @@ {

"private": false,
"version": "1.2.3",
"version": "1.2.4",
"sideEffects": false,
"dependencies": {
"@babel/runtime": "^7.10.4"
"@babel/runtime": "^7.10.5"
}
}

@@ -14,3 +14,3 @@ "use strict";

// https://stackoverflow.com/a/32108184/3135248
return (0, _isObject.default)(obj) && Object.entries(obj).length === 0 && obj.constructor === Object;
return (0, _isObject.default)(obj) && Object.entries(obj).length === 0 && Object.getOwnPropertyNames(obj).length === 0 && obj.constructor === Object;
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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