ordered-entries

1.0.0 • Public • Published

A follyfill (lol) for Object.entries.

Like Object.keys, Object.entries is not required to reflect property order (which is a real thing since ES2015).

For a good summary, see this answer to Does ES6 introduce a well-defined order of enumeration for object properties?

This implementation uses Object.getOwnPropertyNames, which is required to respect property order.

npm i ordered-entries -S
orderedEntries({ a: 'yup', b: 'yarp' }) // => [ [ 'a', 'yup' ], [ 'b', 'yarp' ] ]

License

WTFPL

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i ordered-entries

    Weekly Downloads

    33

    Version

    1.0.0

    License

    WTFPL

    Last publish

    Collaborators

    • tehshrike