0.0.0 • Published 8 years ago

@59naga/babel-plugin-transform-array-from v0.0.0

Weekly downloads
182
License
MIT
Repository
github
Last release
8 years ago

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