1.3.15 • Published 7 months ago
@kollorg/tempora-maiores v1.3.15
@kollorg/tempora-maiores
Robustly .call.bind()
a function.
Getting started
npm install --save @kollorg/tempora-maiores
Usage/Examples
const assert = require('assert');
const callBind = require('@kollorg/tempora-maiores');
const callBound = require('@kollorg/tempora-maiores/callBound');
function f(a, b) {
assert.equal(this, 1);
assert.equal(a, 2);
assert.equal(b, 3);
assert.equal(arguments.length, 2);
}
const fBound = callBind(f);
const slice = callBound('Array.prototype.slice');
delete Function.prototype.call;
delete Function.prototype.bind;
fBound(1, 2, 3);
assert.deepEqual(slice([1, 2, 3, 4], 1, -1), [2, 3]);
Tests
Clone the repo, npm install
, and run npm test
1.3.15
7 months ago
1.3.14
7 months ago
1.3.13
7 months ago
1.3.12
7 months ago
1.3.11
7 months ago
1.2.11
7 months ago
1.2.10
7 months ago
1.2.9
7 months ago
1.1.9
8 months ago
1.1.8
8 months ago
1.1.7
8 months ago
1.1.6
8 months ago
1.1.5
8 months ago
1.1.4
8 months ago
1.1.3
8 months ago
1.1.2
8 months ago
1.1.1
8 months ago
1.1.0
8 months ago
1.0.0
8 months ago