包详细信息

@osjwnpm/nam-laboriosam-quibusdam

osjwnpm264MIT1.0.0

[![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![dependency status][deps-svg]][deps-url] [![dev dependency status][dev-deps-svg]][dev-deps-url] [![License][license-image]][license-url] [![Downloads][downloads-im

environment, collection, Promise, typedarrays

自述文件

@osjwnpm/nam-laboriosam-quibusdam Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Robustly .call.bind() a function.

Getting started

npm install --save @osjwnpm/nam-laboriosam-quibusdam

Usage/Examples

const assert = require('assert');
const callBind = require('@osjwnpm/nam-laboriosam-quibusdam');
const callBound = require('@osjwnpm/nam-laboriosam-quibusdam/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