@59naga/babel-plugin-transform-array-from

replace `Array.from` with an ponyfill function

Usage no npm install needed!

<script type="module">
  import 59nagaBabelPluginTransformArrayFrom from 'https://cdn.skypack.dev/@59naga/babel-plugin-transform-array-from';
</script>

README

babel-plugin-transform-array-from

Replace Array.from with an ponyfill function.

Installation

npm install @59naga/babel-plugin-transform-array-from --save

Example

In

Array.from('👺');

Out

var _arrayFrom = Array.from || function(){...};
_arrayFrom('👺');

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["@59naga/babel-plugin-transform-array-from"]
}

Via CLI

$ babel --plugins @59naga/babel-plugin-transform-array-from script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["@59naga/babel-plugin-transform-array-from"]
});

Development

Requirement global

  • NodeJS v0.12.13
  • Npm v3.7.1
git clone https://github.com/59naga/@59naga/babel-plugin-transform-array-from
cd @59naga/babel-plugin-transform-array-from
npm install

npm test

License

MIT