vmk-demo-bot / admin / node_modules / call-bound /
..
.github init 1 month ago
test init 1 month ago
.eslintrc init 1 month ago
.nycrc init 1 month ago
CHANGELOG.md init 1 month ago
LICENSE init 1 month ago
README.md init 1 month ago
index.d.ts init 1 month ago
index.js init 1 month ago
package.json init 1 month ago
tsconfig.json init 1 month ago
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