Евгения Акиншина 52274d6dab HW<react> done 3 år sedan
..
test 52274d6dab HW<react> done 3 år sedan
.editorconfig 52274d6dab HW<react> done 3 år sedan
.eslintignore 52274d6dab HW<react> done 3 år sedan
.eslintrc 52274d6dab HW<react> done 3 år sedan
.nycrc 52274d6dab HW<react> done 3 år sedan
CHANGELOG.md 52274d6dab HW<react> done 3 år sedan
LICENSE 52274d6dab HW<react> done 3 år sedan
README.md 52274d6dab HW<react> done 3 år sedan
auto.js 52274d6dab HW<react> done 3 år sedan
implementation.js 52274d6dab HW<react> done 3 år sedan
index.js 52274d6dab HW<react> done 3 år sedan
package.json 52274d6dab HW<react> done 3 år sedan
polyfill.js 52274d6dab HW<react> done 3 år sedan
shim.js 52274d6dab HW<react> done 3 år sedan

README.md

object.fromentries Version Badge

dependency status dev dependency status License Downloads

npm badge

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);

Tests

Simply clone the repo, npm install, and run npm test