0.0.5 • Published 6 years ago

babel-plugin-transform-es2017-object-entries v0.0.5

Weekly downloads
3,692
License
MIT
Repository
github
Last release
6 years ago

babel-plugin-transform-es2017-object-entries

Babel plugin for transforming ES2017 features Object.entries and Object.keys.

This plugin replaces calls to Object.entries() and Object.values() with calls to generated functions. The generated functions are ES5 compliant.

Example .babelrc configuration

{
  "plugins": ["transform-es2017-object-entries"]
}

Related work

Other plugins exist, like babel-plugin-transform-object-entries which only deals with Object.entries() and instead imports implementation from core-js.