PIbd-21_Zhirnova_A._E._Inte.../Laba3/node_modules/es-shim-unscopables
2023-12-06 18:38:53 +03:00
..
.github Lab3 2023-12-06 18:38:53 +03:00
test Lab3 2023-12-06 18:38:53 +03:00
.eslintrc Lab3 2023-12-06 18:38:53 +03:00
.nycrc Lab3 2023-12-06 18:38:53 +03:00
CHANGELOG.md Lab3 2023-12-06 18:38:53 +03:00
index.js Lab3 2023-12-06 18:38:53 +03:00
LICENSE Lab3 2023-12-06 18:38:53 +03:00
package.json Lab3 2023-12-06 18:38:53 +03:00
README.md Lab3 2023-12-06 18:38:53 +03:00

es-shim-unscopables Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Helper package to shim a method into Array.prototype[Symbol.unscopables]

Example

const assert = require('assert');

const shimUnscopables = require('es-shim-unscopables');

let copyWithin;
let concat;
with ([]) {
    assert.equal(concat, Array.prototype.concat);
    assert.notEqual(copyWithin, Array.prototype.copyWithin);
}

shimUnscopables('concat');

with ([]) {
    assert.notEqual(concat, Array.prototype.concat);
    assert.notEqual(copyWithin, Array.prototype.copyWithin);
}

Tests

Simply clone the repo, npm install, and run npm test

Security

Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.