root 3bf41bf355 update há 1 ano atrás
..
test 3bf41bf355 update há 1 ano atrás
.editorconfig 3bf41bf355 update há 1 ano atrás
.eslintignore 3bf41bf355 update há 1 ano atrás
.eslintrc 3bf41bf355 update há 1 ano atrás
.nycrc 3bf41bf355 update há 1 ano atrás
CHANGELOG.md 3bf41bf355 update há 1 ano atrás
LICENSE 3bf41bf355 update há 1 ano atrás
README.md 3bf41bf355 update há 1 ano atrás
auto.js 3bf41bf355 update há 1 ano atrás
implementation.js 3bf41bf355 update há 1 ano atrás
index.js 3bf41bf355 update há 1 ano atrás
package.json 3bf41bf355 update há 1 ano atrás
polyfill.js 3bf41bf355 update há 1 ano atrás
shim.js 3bf41bf355 update há 1 ano atrás

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