call-bind-apply-helpers <sup>Version Badge</sup>

github actions coverage dependency status dev dependency status License Downloads

npm badge

Helper functions around Function call/apply/bind, for use in call-bind.

The only packages that should likely ever use this package directly are call-bind and get-intrinsic. Please use call-bind unless you have a very good reason not to.

Getting started

npm install --save call-bind-apply-helpers

Usage/Examples

const assert = require('assert');
const callBindBasic = require('call-bind-apply-helpers');

function f(a, b) {
	assert.equal(this, 1);
	assert.equal(a, 2);
	assert.equal(b, 3);
	assert.equal(arguments.length, 2);
}

const fBound = callBindBasic([f, 1]);

delete Function.prototype.call;
delete Function.prototype.bind;

fBound(2, 3);

Tests

Clone the repo, npm install, and run npm test

call-bind-apply-helpers - Installation

To install call-bind-apply-helpers via this registry, you'll need to install via the --registry parameter with your package manager.

n

NPM

npm install call-bind-apply-helpers --registry https://js.registry.sudovanilla.org

Learn more about the --registry parameter.

Yarn

yarn config set registry https://js.registry.sudovanilla.org
yarn install call-bind-apply-helpers

Learn more about the config option.

PNPM

pnpm install call-bind-apply-helpers --registry https://js.registry.sudovanilla.org

Learn more about the --registry parameter.

Bun Logo

Bun

bun install call-bind-apply-helpers --registry https://js.registry.sudovanilla.org

Learn more about the --registry parameter.

Learn more about setting this up in your bunfig.toml configuration.


For Deno, add the following to your .npmrc file in your directory:

registry="https://js.registry.sudovanilla.org"

Then run the deno install command.

call-bind-apply-helpers - Download

Download Tarball (v1.0.2)

Integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==
SHASUM 4b5428c222be985d79c3d82657479dbe0b59b2d6
Tarball https://js.registry.sudovanilla.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz