Gogs df670eaa27 first commit 3 veckor sedan
..
.github df670eaa27 first commit 3 veckor sedan
test df670eaa27 first commit 3 veckor sedan
.eslintrc df670eaa27 first commit 3 veckor sedan
.nycrc df670eaa27 first commit 3 veckor sedan
CHANGELOG.md df670eaa27 first commit 3 veckor sedan
LICENSE df670eaa27 first commit 3 veckor sedan
README.md df670eaa27 first commit 3 veckor sedan
index.d.ts df670eaa27 first commit 3 veckor sedan
index.js df670eaa27 first commit 3 veckor sedan
package.json df670eaa27 first commit 3 veckor sedan
tsconfig.json df670eaa27 first commit 3 veckor sedan

README.md

call-bound Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Robust call-bound JavaScript intrinsics, using call-bind and get-intrinsic.

Getting started

npm install --save call-bound

Usage/Examples

const assert = require('assert');
const callBound = require('call-bound');

const slice = callBound('Array.prototype.slice');

delete Function.prototype.call;
delete Function.prototype.bind;
delete Array.prototype.slice;

assert.deepEqual(slice([1, 2, 3, 4], 1, -1), [2, 3]);

Tests

Clone the repo, npm install, and run npm test