object.fromentries (2.0.8)

Published 2026-02-24 14:02:04 +00:00 by atheaadmin

Installation

registry=
npm install object.fromentries@2.0.8
"object.fromentries": "2.0.8"

About this package

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

Dependencies

Dependencies

ID Version
call-bind ^1.0.7
define-properties ^1.2.1
es-abstract ^1.23.2
es-object-atoms ^1.0.0

Development Dependencies

ID Version
@es-shims/api ^2.4.2
@ljharb/eslint-config ^21.1.0
aud ^2.0.4
auto-changelog ^2.4.0
eslint =8.8.0
has-strict-mode ^1.0.1
in-publish ^2.0.1
nyc ^10.3.2
safe-publish-latest ^2.0.0
tape ^5.7.5

Keywords

Object.fromEntries Object.entries Object.values Object.keys entries values ES7 ES8 ES2017 shim object keys polyfill es-shim API
Details
npm
2026-02-24 14:02:04 +00:00
0
Jordan Harband
MIT
latest
5.9 KiB
Assets (1)
Versions (1) View all
2.0.8 2026-02-24