forked from svrjs/svrjs
Lint out the codebase
This commit is contained in:
parent
7a14e4508c
commit
2872be5b5b
1 changed files with 2 additions and 1 deletions
|
@ -119,7 +119,8 @@ if (!process.singleThreaded) {
|
|||
let oldLog = console.log;
|
||||
console.log = (...params) => {
|
||||
if (
|
||||
params[0] == "ChildProcess.prototype.send() - Sorry! Not implemented yet"
|
||||
params[0] ==
|
||||
"ChildProcess.prototype.send() - Sorry! Not implemented yet"
|
||||
) {
|
||||
throw new Error("NOT IMPLEMENTED");
|
||||
} else {
|
||||
|
|
Reference in a new issue