Comparing version 4.6.3 to 4.7.0
@@ -16,15 +16,9 @@ 'use strict'; | ||
evalScript(code, options = {}) { | ||
// Module evaluation support can be enabled once | ||
// https://github.com/Microsoft/ChakraCore/issues/5274 | ||
// is completed. | ||
/* | ||
if (options.module && this.args[0] !== '-Module') { | ||
this.args.unshift('-Module'); | ||
if (options.module && this.args[0] !== '-module') { | ||
this.args.unshift('-module'); | ||
} | ||
if (!options.module && this.args[0] === '-Module') { | ||
if (!options.module && this.args[0] === '-module') { | ||
this.args.shift(); | ||
} | ||
*/ | ||
@@ -31,0 +25,0 @@ return super.evalScript(code, options); |
{ | ||
"name": "eshost", | ||
"version": "4.6.3", | ||
"version": "4.7.0", | ||
"description": "Invoke ECMAScript scripts in any command line JS engine.", | ||
@@ -5,0 +5,0 @@ "main": "lib/eshost.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
93313
1809