Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"version": "0.2",
"words": [
"ndone",
"nerrors",
"stdlib",
"anyby"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,17 @@ tape( 'the function computes the inverse coversed sine via a callback function',
acoversinBy( x.length, x, 1, y, 1, accessor );
t.deepEqual( y, expected, 'deep equal' );

x = new Array( 5 ); // sparse array
x = []; // sparse array
x.length = 5;
y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];

expected = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];

acoversinBy( x.length, x, 1, y, 1, accessor );
t.deepEqual( y, expected, 'deep equal' );

x = new Array( 5 ); // sparse array
x = []; // sparse array
x.length = 5;
x[ 2 ] = rand();
y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
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 = '';

Expand Down Expand Up @@ -85,8 +85,8 @@
if ( PRETTY_PRINT ) {
// Print the list of masks in symbolic notation:
for ( i = 0; i < TOTAL; i++ ) {
console.log( '%d = %s = %s = %s', masks[i][0], masks[i][1], masks[i][2], masks[i][3] );

Check warning on line 88 in lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected console statement
}
} else {
console.log( JSON.stringify( masks ) );

Check warning on line 91 in lib/node_modules/@stdlib/process/umask/scripts/binary_to_symbolic.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected console statement
}
18 changes: 14 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@
},
"devDependencies": {
"0x": "^4.10.2",
"@cspell/eslint-plugin": "^8.8.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/cz-commitlint": "^17.4.4",
"@conventional-commits/parser": "^0.4.1",
"@cspell/eslint-plugin": "^8.8.0",
"@kaciras/deasync": "^1.0.1",
"@types/node": "^13.9.0",
"@typescript-eslint/parser": "^6.9.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"ajv": "^5.2.2",
"browser-pack-flat": "^3.0.0",
"browserify": "^17.0.0",
Expand All @@ -140,10 +140,10 @@
"editorconfig-checker": "^6.0.0",
"envify": "^4.0.0",
"eslint": "^8.57.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-expect-type": "^0.2.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-node": "^11.1.0",
"exorcist": "^2.0.0",
"factor-bundle": "^2.5.0",
"gh-pages": "git+https://github.com/Planeshifter/gh-pages.git#main",
Expand Down Expand Up @@ -293,5 +293,15 @@
"ndarray",
"numpy",
"scipy"
]
],
"pnpm": {
"onlyBuiltDependencies": [
"typedoc"
],
"ignoredBuiltDependencies": [
"@kaciras/deasync",
"es5-ext",
"highlight.js"
]
}
}
Loading