Commit 02ae0e83 authored by Robert Knight's avatar Robert Knight

Add Symbol polyfill

This is needed for various ES6 language constructs, such as `for ... of`
loops, to work because the transpiled code depends on references to
properties of the `Symbol` object (eg. Symbol.iterator).
parent e4cd67e8
......@@ -3,6 +3,7 @@
// ES2015 polyfills
require('core-js/es6/promise');
require('core-js/es6/set');
require('core-js/es6/symbol');
require('core-js/fn/array/find');
require('core-js/fn/array/find-index');
require('core-js/fn/array/from');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment