$ npm install object.entries-ponyfill
The implementation is the same as es-shims/Object.entries, except ES3 is not supported, therefore making this package 600 bytes rather than 28000 bytes.
You should polyfill your targeted browser environments automatically with polyfill.io, rather than using a non-tailored approach like this ponyfill. Node >= 7 has Object.entries
natively. You probably only need this ponyfill if your targeted environment is Node and is version < 7.
$ npm install object.entries-ponyfill
const entries = require('object.entries-ponyfill')
entries({ foo: 123, bar: 456 })
// => [ [ 'foo', 123 ], [ 'bar', 456 ] ]
© 2010 - cnpmjs.org x YWFE | Home | YWFE