peach a19a732be8 commit message | před 2 roky | |
---|---|---|
.. | ||
.github | před 2 roky | |
test | před 2 roky | |
.eslintrc | před 2 roky | |
.nycrc | před 2 roky | |
CHANGELOG.md | před 2 roky | |
LICENSE | před 2 roky | |
README.md | před 2 roky | |
index.js | před 2 roky | |
package.json | před 2 roky |
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.