object.entries-ponyfill
`Object.entries()` ponyfill
Last updated 9 years ago by m59 .
Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install object.entries-ponyfill 
SYNC missed versions from official npm registry.

object.entries-ponyfill

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.

built-in

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.

install

$ npm install object.entries-ponyfill

example

const entries = require('object.entries-ponyfill')

entries({ foo: 123, bar: 456 })
// => [ [ 'foo', 123 ], [ 'bar', 456 ] ]

Current Tags

  • 1.0.1                                ...           latest (9 years ago)

2 Versions

  • 1.0.1                                ...           9 years ago
  • 1.0.0                                ...           9 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 1
Last Month 1
Dependencies (0)
None
Dev Dependencies (1)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |