root 3bf41bf355 update | преди 1 година | |
---|---|---|
.. | ||
.github | преди 1 година | |
test | преди 1 година | |
.eslintrc | преди 1 година | |
.nycrc | преди 1 година | |
CHANGELOG.md | преди 1 година | |
LICENSE | преди 1 година | |
README.md | преди 1 година | |
index.js | преди 1 година | |
package.json | преди 1 година |
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.