PIbd-21_Zhirnova_A._E._Inte.../3 proba/node_modules/object.fromentries
2023-12-06 21:05:45 +03:00
..
test Lab3new 2023-12-06 21:05:45 +03:00
.editorconfig Lab3new 2023-12-06 21:05:45 +03:00
.eslintrc Lab3new 2023-12-06 21:05:45 +03:00
.nycrc Lab3new 2023-12-06 21:05:45 +03:00
auto.js Lab3new 2023-12-06 21:05:45 +03:00
CHANGELOG.md Lab3new 2023-12-06 21:05:45 +03:00
implementation.js Lab3new 2023-12-06 21:05:45 +03:00
index.js Lab3new 2023-12-06 21:05:45 +03:00
LICENSE Lab3new 2023-12-06 21:05:45 +03:00
package.json Lab3new 2023-12-06 21:05:45 +03:00
polyfill.js Lab3new 2023-12-06 21:05:45 +03:00
README.md Lab3new 2023-12-06 21:05:45 +03:00
shim.js Lab3new 2023-12-06 21:05:45 +03: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