root 3bf41bf355 update | 1 tahun lalu | |
---|---|---|
.. | ||
test | 1 tahun lalu | |
.editorconfig | 1 tahun lalu | |
.eslintignore | 1 tahun lalu | |
.eslintrc | 1 tahun lalu | |
.nycrc | 1 tahun lalu | |
CHANGELOG.md | 1 tahun lalu | |
LICENSE | 1 tahun lalu | |
README.md | 1 tahun lalu | |
auto.js | 1 tahun lalu | |
implementation.js | 1 tahun lalu | |
index.js | 1 tahun lalu | |
package.json | 1 tahun lalu | |
polyfill.js | 1 tahun lalu | |
shim.js | 1 tahun lalu |
An ES spec-proposal-compliant Object.fromEntries
shim. Invoke its "shim" method to shim Object.fromEntries
if it is unavailable or noncompliant.
This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the proposed spec.
Most common usage:
var assert = require('assert');
var fromEntries = require('object.fromentries');
var obj = { a: 1, b: 2, c: 3 };
var actual = fromEntries(Object.entries(obj));
assert.deepEqual(obj, actual);
if (!Object.fromEntries) {
fromEntries.shim();
}
assert.deepEqual(Object.fromEntries(Object.entries(obj)), obj);
Simply clone the repo, npm install
, and run npm test