root 3bf41bf355 update | hace 1 año | |
---|---|---|
.. | ||
.github | hace 1 año | |
test | hace 1 año | |
.eslintrc | hace 1 año | |
.nycrc | hace 1 año | |
CHANGELOG.md | hace 1 año | |
LICENSE | hace 1 año | |
README.md | hace 1 año | |
index.js | hace 1 año | |
package.json | hace 1 año |
Helper package to shim a method into Array.prototype[Symbol.unscopables]
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);
}
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.