Gathering detailed insights and metrics for es-shim-unscopables
Gathering detailed insights and metrics for es-shim-unscopables
Gathering detailed insights and metrics for es-shim-unscopables
Gathering detailed insights and metrics for es-shim-unscopables
Helper package to shim a method into `Array.prototype[Symbol.unscopables]`
npm install es-shim-unscopables
99.5
Supply Chain
83.8
Quality
75.4
Maintenance
100
Vulnerability
100
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
2 Stars
15 Commits
2 Watching
1 Branches
1 Contributors
Updated on 04 Dec 2022
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-7%
4,532,141
Compared to previous day
Last week
1.6%
26,192,045
Compared to previous week
Last month
8.1%
109,154,340
Compared to previous month
Last year
40.4%
1,119,773,771
Compared to previous year
Helper package to shim a method into Array.prototype[Symbol.unscopables]
1const assert = require('assert');
2
3const shimUnscopables = require('es-shim-unscopables');
4
5let copyWithin;
6let concat;
7with ([]) {
8 assert.equal(concat, Array.prototype.concat);
9 assert.notEqual(copyWithin, Array.prototype.copyWithin);
10}
11
12shimUnscopables('concat');
13
14with ([]) {
15 assert.notEqual(concat, Array.prototype.concat);
16 assert.notEqual(copyWithin, Array.prototype.copyWithin);
17}
Simply clone the repo, npm install
, and run npm test
Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
security policy file detected
Details
Reason
Found 0/15 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Score
Last Scanned on 2024-11-18
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