apply-or
Invoke .apply if value is a function, otherwise, return default value.
npm install apply-or --save
npm stats
Why?
Function.prototype.apply
is normally sufficient; however, there are situations where it is useful to treat a value as a Function
(invoke it) only if it is indeed a Function
; otherwise, return it as-is. Calling .apply
on a value that is not a function would cause an error.
Examples
var apply = require('apply-or')
function delay (cb) {
setTimeout(apply.bind(null, cb))
}
delay('Hello')
delay(console.log.bind(console, 'Hello, World'))
var apply = require('apply-or')
function divmax (divisor) {
return Math.max.apply(null, this.val) / divisor
}
var data = {
val: [9, 7, 15, 12]
}
apply(divmax, 5, data)
API
apply(func, args, self)
arguments
func: (Function)
Function to be invoked.args: (Array|*)
Arguments to apply to function.self: (Object)
this
value.
returns
(*)
Result of applying function or default value.
Licenses