Skip to content

Commit

Permalink
lib: use validateArray
Browse files Browse the repository at this point in the history
The `validateArray()` validator could be used to cleanup validation
and keep consistency.
  • Loading branch information
VoltrexKeyva committed Aug 15, 2021
1 parent fdce138 commit 60e51ad
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions lib/internal/worker.js
@@ -1,7 +1,6 @@
'use strict';

const {
ArrayIsArray,
ArrayPrototypeForEach,
ArrayPrototypeMap,
ArrayPrototypePush,
Expand Down Expand Up @@ -123,11 +122,9 @@ class Worker extends EventEmitter {
constructor(filename, options = {}) {
super();
debug(`[${threadId}] create new worker`, filename, options);
if (options.execArgv && !ArrayIsArray(options.execArgv)) {
throw new ERR_INVALID_ARG_TYPE('options.execArgv',
'Array',
options.execArgv);
}
if (options.execArgv)
validateArray(options.execArgv, 'options.execArgv');

let argv;
if (options.argv) {
validateArray(options.argv, 'options.argv');
Expand Down

0 comments on commit 60e51ad

Please sign in to comment.