Comparing version 4.6.0 to 4.6.1
{ | ||
"name": "eshost", | ||
"version": "4.6.0", | ||
"version": "4.6.1", | ||
"description": "Invoke ECMAScript scripts in any command line JS engine.", | ||
@@ -5,0 +5,0 @@ "main": "lib/eshost.js", |
@@ -42,3 +42,3 @@ var $ = { | ||
detachArrayBuffer(buffer) { | ||
var w = new Worker(''); | ||
var w = new Worker('', {type: 'string'}); | ||
w.postMessage('', [buffer]); | ||
@@ -121,3 +121,3 @@ }, | ||
} | ||
var w = new Worker(workerScript(script)); | ||
var w = new Worker(workerScript(script), {type: 'string'}); | ||
w.index = workers.length; | ||
@@ -124,0 +124,0 @@ w.postMessage({kind: 'start', i32a, index: w.index}); |
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
92489