Comparing version 0.3.0 to 0.3.1
@@ -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(). |
@@ -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
24252
53