@59naga/babel-plugin-transform-array-from 中文文档教程
babel-plugin-transform-array-from
将 Array.from
替换为 ponyfill 函数。
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
要求全局
- 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
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