🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

object-is

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

object-is - npm Package Compare versions

Comparing version

to
1.1.2

6

CHANGELOG.md

@@ -10,2 +10,8 @@ # Changelog

## [v1.1.2](https://github.com/es-shims/object-is/compare/v1.1.1...v1.1.2) - 2020-04-14
### Commits
- [Fix] avoid mutating the builtin `Object.is` in the main entry point [`5988702`](https://github.com/es-shims/object-is/commit/59887020544021d7cf8e72cd84c4d67abcf558c5)
## [v1.1.1](https://github.com/es-shims/object-is/compare/v1.1.0...v1.1.1) - 2020-04-14

@@ -12,0 +18,0 @@

3

index.js
'use strict';
var define = require('define-properties');
var callBind = require('es-abstract/helpers/callBind');

@@ -9,3 +10,3 @@ var implementation = require('./implementation');

var polyfill = getPolyfill();
var polyfill = callBind(getPolyfill(), Object);

@@ -12,0 +13,0 @@ define(polyfill, {

{
"name": "object-is",
"version": "1.1.1",
"version": "1.1.2",
"description": "ES2015-compliant shim for Object.is - differentiates between -0 and +0",

@@ -18,3 +18,3 @@ "author": "Jordan Harband",

"coverage": "covert test",
"prelint": "es-shim-api",
"prelint": "es-shim-api --bound",
"lint": "eslint .",

@@ -44,3 +44,4 @@ "version": "auto-changelog && git add CHANGELOG.md",

"dependencies": {
"define-properties": "^1.1.3"
"define-properties": "^1.1.3",
"es-abstract": "^1.17.5"
},

@@ -47,0 +48,0 @@ "devDependencies": {