_.defer

defer_.defer(function, *arguments) Defers invoking the function until the current call stack has cleared, similar to using

2016-04-09 09:05:20
_.bindAll

bindAll_.bindAll(object, *methodNames) Binds a number of methods on the object, specified by methodNames, to be run

2016-04-09 09:05:17
_.once

once_.once(function) Creates a version of the function that can only be called one time. Repeated calls to the modified function

2016-04-09 09:05:31
_.bind

bind_.bind(function, object, *arguments) Bind a function to an object, meaning that whenever the function is called

2016-04-09 09:05:17
_.delay

delay_.delay(function, wait, *arguments) Much like setTimeout, invokes function after wait milliseconds. If

2016-04-09 09:05:20
_.compose

compose_.compose(*functions) Returns the composition of a list of functions, where each function consumes the return value

2016-04-09 09:05:19
_.before

before_.before(count, function) Creates a version of the function that can be called no more than count times. The result

2016-04-09 09:05:17
_.debounce

debounce_.debounce(function, wait, [immediate]) Creates and returns a new debounced version of the passed function which will postpone

2016-04-09 09:05:20
_.partial

partial_.partial(function, *arguments) Partially apply a function by filling in any number of its arguments, without

2016-04-09 09:05:31
_.after

after_.after(count, function) Creates a version of the function that will only be run after first being called count times

2016-04-09 09:05:15