ES2015のfor ... ofループをbabelでコンパイルすると Symbol.Iteratorになるのですが
古いnode.jsのバージョンやIEでは対応してないのでエラーになります。
その場合はbabel-polyfillを使うことで対処できます。
$ npm install babel-polyfill
index.js
require("babel-polyfill"); // or import "babel-polyfill";
Go to list of users who liked
More than 5 years have passed since last update.
ES2015のfor ... ofループをbabelでコンパイルすると Symbol.Iteratorになるのですが
古いnode.jsのバージョンやIEでは対応してないのでエラーになります。
その場合はbabel-polyfillを使うことで対処できます。
$ npm install babel-polyfill
require("babel-polyfill"); // or import "babel-polyfill";
Register as a new user and use Qiita more conveniently
Go to list of users who liked