Gathering detailed insights and metrics for @extra-array/copy-update
Gathering detailed insights and metrics for @extra-array/copy-update
npm install @extra-array/copy-update
Typescript
Module System
Node Version
NPM Version
68.1
Supply Chain
85.8
Quality
76.2
Maintenance
100
Vulnerability
100
License
TypeScript (95.89%)
JavaScript (4.11%)
Total Downloads
94,683
Last Day
133
Last Week
322
Last Month
1,647
Last Year
8,571
15 Stars
564 Commits
5 Forks
3 Watching
3 Branches
4 Contributors
Minified
Minified + Gzipped
Latest Version
2.10.19
Package Id
@extra-array/copy-update@2.10.19
Unpacked Size
5.10 kB
Size
2.25 kB
File Count
8
NPM Version
8.4.1
Node Version
17.5.0
Cumulative downloads
Total Downloads
Last day
1,800%
133
Compared to previous day
Last week
-60.9%
322
Compared to previous week
Last month
1,793.1%
1,647
Compared to previous month
Last year
-37.3%
8,571
Compared to previous year
Copies part of array to another. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:
Alternatives: copy, copy$.
Similar: copy, copyWithin, moveWithin.
This is part of package extra-array.
1array.copy$(x, y, [j], [i], [I]); 2// x: target array (updated) 3// y: source array 4// j: write index (0) 5// i: read start index (0) 6// I: read end index (X) 7// → x
1const array = require("extra-array"); 2 3var x = [1, 2, 3, 4, 5]; 4var y = [10, 20, 30]; 5array.copy$(x, y); 6// [ 10, 20, 30, 4, 5 ] 7 8x; 9// [ 10, 20, 30, 4, 5 ] 10 11var x = [1, 2, 3, 4, 5]; 12array.copy$(x, y, 1); 13// [ 1, 10, 20, 30, 5 ] 14 15var x = [1, 2, 3, 4, 5]; 16array.copy$(x, y, 1, 1); 17// [ 1, 20, 30, 4, 5 ] 18 19var x = [1, 2, 3, 4, 5]; 20array.copy$(x, y, 1, 1, 2); 21// [1, 20, 3, 4, 5]
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
1 existing vulnerabilities detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-01-13
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More