Mohammad Asif cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
..
test cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
.editorconfig cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
.eslintrc cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
.nycrc cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
CHANGELOG.md cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
LICENSE cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
README.md cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
auto.js cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
implementation.js cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
index.js cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
package.json cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
polyfill.js cf937194cb Removed un-waned things 1. 5 tháng trước cách đây
shim.js cf937194cb Removed un-waned things 1. 5 tháng trước cách đây

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