diff options
author | Jose <jose@zeroc.com> | 2019-07-09 17:28:56 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-07-09 17:28:56 +0200 |
commit | 9bb1f40c2149edadcfc24892635b1f36d649cc6f (patch) | |
tree | b7bf38fb444a3a4a1eef23bb998ec065953f5ff3 /js/src | |
parent | Fix ice.xcodeproj path issue (diff) | |
parent | Remove forward declarations limitation - Close #97 (diff) | |
download | ice-9bb1f40c2149edadcfc24892635b1f36d649cc6f.tar.bz2 ice-9bb1f40c2149edadcfc24892635b1f36d649cc6f.tar.xz ice-9bb1f40c2149edadcfc24892635b1f36d649cc6f.zip |
Merge remote-tracking branch 'origin/3.7' into swift
Diffstat (limited to 'js/src')
-rw-r--r-- | js/src/es5/index.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/src/es5/index.js b/js/src/es5/index.js index 4955e6fc8ee..dcd714c820c 100644 --- a/js/src/es5/index.js +++ b/js/src/es5/index.js @@ -2,7 +2,9 @@ // Copyright (c) ZeroC, Inc. All rights reserved. // -require("@babel/polyfill"); +require("core-js/stable"); +require("regenerator-runtime/runtime"); + module.exports.Ice = require("./Ice/Ice").Ice; module.exports.IceMX = require("./Ice/Ice").IceMX; module.exports.IceSSL = require("./Ice/Ice").IceSSL; |