1.0.0 • Published 7 years ago

ordered-entries v1.0.0

Weekly downloads
465
License
WTFPL
Repository
github
Last release
7 years ago

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