Lawsun d230cfbce0 first commit il y a 1 an
..
test d230cfbce0 first commit il y a 1 an
.editorconfig d230cfbce0 first commit il y a 1 an
.eslintignore d230cfbce0 first commit il y a 1 an
.eslintrc d230cfbce0 first commit il y a 1 an
.nycrc d230cfbce0 first commit il y a 1 an
CHANGELOG.md d230cfbce0 first commit il y a 1 an
LICENSE d230cfbce0 first commit il y a 1 an
README.md d230cfbce0 first commit il y a 1 an
auto.js d230cfbce0 first commit il y a 1 an
implementation.js d230cfbce0 first commit il y a 1 an
index.js d230cfbce0 first commit il y a 1 an
package.json d230cfbce0 first commit il y a 1 an
polyfill.js d230cfbce0 first commit il y a 1 an
shim.js d230cfbce0 first commit il y a 1 an

README.md

object.fromentries Version Badge

github actions coverage 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