better Symbol polyfill existence check because the one es6-symbol uses isn't reliable

This commit is contained in:
Sebastian McKenzie 2014-11-07 12:27:57 +11:00
parent 62fe128132
commit 12f68b05c3

View File

@ -1,3 +1,6 @@
require("es6-symbol/implement");
if (typeof Symbol === "undefined") {
require("es6-symbol/implement");
}
require("es6-shim");
require("regenerator/runtime");