Skip to content

Commit ff7799a

Browse files
committed
fix: resolve linting errors and indentation in binary_to_symbolic.js
1 parent eee306a commit ff7799a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var j;
3737
TOTAL = 8 * 8 * 8 * 8;
3838

3939
// For each integer value (octal number), determine the symbolic notation equivalent to the value's binary representation...
40-
masks = new Array( TOTAL );
40+
masks = [];
4141
for ( i = 0; i < TOTAL; i++ ) {
4242
tmp = '';
4343

0 commit comments

Comments
 (0)