We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a2251c commit 6cbdc0bCopy full SHA for 6cbdc0b
2 files changed
libs/core/workerMgr.js
@@ -1,11 +1,10 @@
1
module.exports = workerMgr;
2
-var spawn = require("child_process").spawn;
3
var eom = "\x03";
4
var eom1 = "\x0e";
5
var eom2 = "\x0f";
6
var CSVError = require('./CSVError');
7
function workerMgr() {
8
-
+ var spawn = require("child_process").spawn;
9
var exports = {
10
initWorker: initWorker,
11
sendWorker: sendWorker,
package.json
@@ -234,5 +234,8 @@
234
"test": "mocha ./test -R spec",
235
"test-debug": "mocha debug ./test -R spec",
236
"test-all": "mocha ./test -R spec && CSV_WORKER=3 mocha ./test -R spec "
237
+ },
238
+ "browser":{
239
+ "child_process":false
240
}
241
0 commit comments