New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

es6-shim

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

es6-shim - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

3

CHANGELOG.md

@@ -0,1 +1,4 @@

## es6-shim 0.3.1 (January 30, 2012)
* Added IE8 support.
## es6-shim 0.3.0 (January 27, 2012)

@@ -2,0 +5,0 @@ * Added Number.isFinite() and Object.isnt().

2

package.json

@@ -5,3 +5,3 @@ {

"description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
"version": "0.3.0",
"version": "0.3.1",
"homepage": "https://github.com/paulmillr/es6-shim/",

@@ -8,0 +8,0 @@ "repository": {

@@ -23,2 +23,8 @@ # ES6 Shim

## IE8 support
There are some shims that do not work in IE8, because it is simply not
possible to implement them properly:
* Object.getOwnPropertyDescriptors, Object.getPropertyDescriptor, Object.getPropertyNames
## License

@@ -25,0 +31,0 @@ The project was initially based on [es6-shim by Axel Rauschmayer](https://github.com/rauschma/es6-shim).

@@ -10,6 +10,6 @@ var expect = require('expect.js');

})(0, 1, 2);
(function() {
expect(Array.from(arguments)).to.eql([null, undefined, 0.1248, -0, 0]);
})(null, undefined, 0.1248, -0, 0);
expect(Array.from([null, undefined, 0.1248, -0, 0])).to.eql(
[null, undefined, 0.1248, -0, 0]
);
});

@@ -16,0 +16,0 @@

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