Anastasia Cheetham
Nov 10, 2010
...
Better jQuery.each which works on hashes as well as having the arguments the right way round.
fluid.each(source, func);
File name: Fluid.js
Fluid.js
source
(Arrayable or Object) The container to be iterated over.
func
(Function) A function accepting (value, key) for each iterated object. This function may return a value to terminate the iteration
None
var now = <current time>; var items = [... an array of objects ...]; fluid.each(items, function(entry) {entry.timeStamp = now;});
In this example, the current time is added to each object in the array items.
items