htc 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
..
test 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
.editorconfig 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
.eslintrc 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
.nycrc 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
CHANGELOG.md 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
LICENSE 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
README.md 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
auto.js 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
implementation.js 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
index.js 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
package.json 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
polyfill.js 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses
shim.js 7ca38fdcbb 善行少年PC端首次提交(基础版) hace 10 meses

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