diff --git a/index.html b/index.html index d23e03d23..8e30f6f23 100644 --- a/index.html +++ b/index.html @@ -592,7 +592,7 @@

Collection Functions (Arrays or Objects)

- invoke_.invoke(list, methodName, [*arguments]) + invoke_.invoke(list, methodName, *arguments)
Calls the method named by methodName on each value in the list. Any extra arguments passed to invoke will be forwarded on to the @@ -834,7 +834,7 @@

Array Functions

- without_.without(array, [*values]) + without_.without(array, *values)
Returns a copy of the array with all instances of the values removed. @@ -1009,7 +1009,7 @@

Array Functions

Function (uh, ahem) Functions

- bind_.bind(function, object, [*arguments]) + bind_.bind(function, object, *arguments)
Bind a function to an object, meaning that whenever the function is called, the value of this will be the object. @@ -1044,7 +1044,7 @@

Function (uh, ahem) Functions

- partial_.partial(function, [*arguments]) + partial_.partial(function, *arguments)
Partially apply a function by filling in any number of its arguments, without changing its dynamic this value. A close cousin @@ -1074,7 +1074,7 @@

Function (uh, ahem) Functions

- delay_.delay(function, wait, [*arguments]) + delay_.delay(function, wait, *arguments)
Much like setTimeout, invokes function after wait milliseconds. If you pass the optional arguments, they will be @@ -1087,7 +1087,7 @@

Function (uh, ahem) Functions

- defer_.defer(function, [*arguments]) + defer_.defer(function, *arguments)
Defers invoking the function until the current call stack has cleared, similar to using setTimeout with a delay of 0. Useful for performing