free-context
v0.0.0
Published
Free context from a function.
Downloads
86
Maintainers
Readme
free-context
Free context from a function.
var free = require('free-context')
// Free context from `.push` method
var push = free(Array.prototype.push)
// First parameter is context, like `.call` or `.apply`
var foo = []
push(foo, 'hello', 'world')
Installation
$ npm install --save free-context
Usage
free(fn, [apply])
Returns a function you can bind a context to with the first argument.
Parameters
fn
(Function
): Target function for freeing context. Returns a new contextless version of this.apply
(Boolean
): Use array instead of argument list for following parameters.
Examples
var push = free(Array.prototype.push)
var foo = []
push(foo, 'Hello', 'world', 'foo', 'bar')
Using apply
:
// Enable `apply`:
var push = free(Array.prototype.push, true)
var foo = []
var items = ['Hello', 'world', 'foo', 'bar']
// Supply array with `apply` instead of arguments
push(foo, items)
License
MIT © Jamen Marz