0.0.0 • Published 5 years ago

bound-call v0.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

bound-call npm.io npm.io

👔 Create a bound call where you can pass "this" context as an argument

const bound = require('bound-call');

const toLowerCase = bound('', 'toLowerCase');

['Hello', 'World'].map(toLowerCase); // ['hello', 'world']

Transpiled version

Environments which exclude node_modules from the transpiling pipeline should include the "browser" entry instead of "main". This exposes an ES5 commonjs module.

Also available for explicit import:

const bound = require('bound-call/dist');