diff --git a/lib/node_modules/@stdlib/assert/is-negative-zero/benchmark/benchmark.js b/lib/node_modules/@stdlib/assert/is-negative-zero/benchmark/benchmark.js index f1f29385cc05..3841b6921b58 100644 --- a/lib/node_modules/@stdlib/assert/is-negative-zero/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/assert/is-negative-zero/benchmark/benchmark.js @@ -16,7 +16,7 @@ * limitations under the License. */ -/* eslint-disable no-new-wrappers, no-undefined, no-empty-function */ +/* eslint-disable no-undefined, no-empty-function */ 'use strict'; diff --git a/lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js b/lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js index f2d67aad14e8..4406a65c4d6b 100644 --- a/lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js +++ b/lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js @@ -37,7 +37,7 @@ var j; TOTAL = 8 * 8 * 8 * 8; // For each integer value (octal number), determine the symbolic notation equivalent to the value's binary representation... -masks = new Array( TOTAL ); +masks = []; for ( i = 0; i < TOTAL; i++ ) { tmp = '';