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

0.0.0 • Public • Published

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

Package Sidebar

Install

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

Weekly Downloads

24

Version

0.0.0

License

MIT

Last publish

Collaborators

  • 59naga