我如何在phantomjs中使用babel-polyfill来获得一些es6期货?
我有phantomjs 2.1.1,并安装了babel-polyfill(通过npm install babel-polyfill
)。
这是文件main.js:
require('babel-polyfill');
console.log(String.startsWith);
当我运行phantomjs main.js
时,它会将undefined
打印到控制台,但babel-polyfill应该添加String.startsWith
方法。