PIbd-21_Danilov_V.V._Intern.../Lab3/node_modules/object.fromentries
Владимир Данилов 83490711d5 отчет
2023-12-19 20:23:11 +04:00
..
test отчет 2023-12-19 20:23:11 +04:00
.editorconfig отчет 2023-12-19 20:23:11 +04:00
.eslintrc отчет 2023-12-19 20:23:11 +04:00
.nycrc отчет 2023-12-19 20:23:11 +04:00
auto.js отчет 2023-12-19 20:23:11 +04:00
CHANGELOG.md отчет 2023-12-19 20:23:11 +04:00
implementation.js отчет 2023-12-19 20:23:11 +04:00
index.js отчет 2023-12-19 20:23:11 +04:00
LICENSE отчет 2023-12-19 20:23:11 +04:00
package.json отчет 2023-12-19 20:23:11 +04:00
polyfill.js отчет 2023-12-19 20:23:11 +04:00
README.md отчет 2023-12-19 20:23:11 +04:00
shim.js отчет 2023-12-19 20:23:11 +04:00

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