object.fromentries
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/object.fromentries package

2.0.8 • Public • Published

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

/object.fromentries/

    Package Sidebar

    Install

    npm i object.fromentries

    Weekly Downloads

    22,270,692

    Version

    2.0.8

    License

    MIT

    Unpacked Size

    16.3 kB

    Total Files

    16

    Last publish

    Collaborators

    • ljharb