/ etherpad / src / plugin_packages / get-intrinsic / node_modules / call-bind-apply-helpers /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]test/5 days ago -  
[DIR]node_modules/5 days ago -  
[TXT]CHANGELOG.md39 years ago1.9K 
[   ]LICENSE39 years ago1.0K 
[TXT]README.md39 years ago2.3K 
[TXT]actualApply.d.ts39 years ago 23  
[   ]actualApply.js39 years ago280  
[TXT]applyBind.d.ts39 years ago614  
[   ]applyBind.js39 years ago264  
[TXT]functionApply.d.ts39 years ago 34  
[   ]functionApply.js39 years ago 99  
[TXT]functionCall.d.ts39 years ago 33  
[   ]functionCall.js39 years ago 97  
[TXT]index.d.ts39 years ago2.2K 
[   ]index.js39 years ago511  
[   ]package.json39 years ago2.4K 
[TXT]reflectApply.d.ts39 years ago 82  
[   ]reflectApply.js39 years ago132  
[   ]tsconfig.json39 years ago115  
README.md

call-bind-apply-helpers Version Badge

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

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80