Mohammad Asif cf937194cb Removed un-waned things 1. | před 5 měsíci | |
---|---|---|
.. | ||
.github | před 5 měsíci | |
test | před 5 měsíci | |
.eslintrc | před 5 měsíci | |
.nycrc | před 5 měsíci | |
CHANGELOG.md | před 5 měsíci | |
LICENSE | před 5 měsíci | |
README.md | před 5 měsíci | |
index.js | před 5 měsíci | |
package.json | před 5 měsíci |
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.