Skip to content

feat: refactor and add protocol support to stats/base/nanrange-by #6440

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 38 commits into from
Jul 5, 2025
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
7c0f342
Create accessors.js
Kaushikgtm Mar 29, 2025
14f0a5f
Update accessors.js
Kaushikgtm Mar 29, 2025
7b487b1
Update nanrange_by.js
Kaushikgtm Mar 29, 2025
af57abf
Update ndarray.js
Kaushikgtm Mar 29, 2025
8f40fa3
Update test.nanrange_by.js
Kaushikgtm Mar 29, 2025
858f1ea
Update test.ndarray.js
Kaushikgtm Mar 29, 2025
d5f8c58
Update README.md
Kaushikgtm Mar 29, 2025
d0d1f6a
Update index.js
Kaushikgtm Mar 29, 2025
70b06be
Update index.d.ts
Kaushikgtm Mar 29, 2025
57ab24a
Update test.ts
Kaushikgtm Mar 29, 2025
a29bea7
Update repl.txt
Kaushikgtm Mar 29, 2025
752c833
Update benchmark.js
Kaushikgtm Mar 29, 2025
d2f1311
Update benchmark.ndarray.js
Kaushikgtm Mar 29, 2025
eb4442d
Update README.md
Kaushikgtm Mar 29, 2025
ff18103
Update README.md
Kaushikgtm Mar 30, 2025
530df0a
Update README.md
Kaushikgtm Mar 30, 2025
cdcf3f2
Update README.md
Kaushikgtm Mar 30, 2025
0bac446
Update README.md
Kaushikgtm Mar 30, 2025
b7b52a2
Update accessors.js
Kaushikgtm Mar 30, 2025
8920c66
Update ndarray.js
Kaushikgtm Mar 30, 2025
9008678
Update accessors.js
Kaushikgtm Mar 30, 2025
55a4cf2
Update README.md
Kaushikgtm Mar 30, 2025
acc496b
Merge remote-tracking branch 'upstream/develop' into Kaushikgtm-patch…
stdlib-bot Jun 8, 2025
fb9b3d1
Merge remote-tracking branch 'upstream/develop' into Kaushikgtm-patch…
stdlib-bot Jul 5, 2025
1c53e34
fix: readme file
gururaj1512 Jul 5, 2025
92e7a5d
fix: benchmarks
gururaj1512 Jul 5, 2025
945f05f
fix: update repl
gururaj1512 Jul 5, 2025
08534e6
fix: update type definitions for nanrangeBy
gururaj1512 Jul 5, 2025
ba4b452
fix: correct test.ts
gururaj1512 Jul 5, 2025
648f0e0
fix: examples
gururaj1512 Jul 5, 2025
bfaefbd
fix: implementation
gururaj1512 Jul 5, 2025
2c55276
chore: minor cleanup
gururaj1512 Jul 5, 2025
4b34ad3
fix: test files
gururaj1512 Jul 5, 2025
41df879
fix: ensure original input array is passed to callback
gururaj1512 Jul 5, 2025
22f5744
style: fix missing space
kgryte Jul 5, 2025
504d4f3
test: update description
kgryte Jul 5, 2025
fb50029
test: update desc
kgryte Jul 5, 2025
25fbf2d
test: update desc
kgryte Jul 5, 2025
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
Prev Previous commit
Next Next commit
test: update description
Signed-off-by: Athan <kgryte@gmail.com>
  • Loading branch information
kgryte authored Jul 5, 2025
commit 504d4f38c2cc5407ebcc94d98f71ec1d5c2ae7e4
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ tape( 'the function calculates the range of a strided array via a callback funct
t.end();
});

tape( 'the function calculates the range of a strided array via a callback function, ignoring NaN values (accessor)', function test( t ) {
tape( 'the function calculates the range of a strided array via a callback function, ignoring NaN values (accessors)', function test( t ) {
var x;
var v;

Expand Down