Skip to content

Commit 58498d0

Browse files
authored
fix: perform explicit push
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 27f9378 commit 58498d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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
@@ -79,7 +79,7 @@ for ( i = 0; i < TOTAL; i++ ) {
7979
}
8080
}
8181
// [ integer, octal, binary_string, symbolic_notation ]
82-
masks[ i ] = [ i, lpad( i.toString( 8 ), 4, '0' ), bstr, tmp ];
82+
masks.push( [ i, lpad( i.toString( 8 ), 4, '0' ), bstr, tmp ] );
8383
}
8484

8585
if ( PRETTY_PRINT ) {

0 commit comments

Comments
 (0)