minor cleanup

This commit is contained in:
rolux 2012-05-23 09:04:49 +02:00
parent 5a4de0de70
commit 1c4caa4965

View file

@ -181,18 +181,18 @@ Ox.loadFile = (function() {
}());
/*@
Ox.loadAsync <f> run map function on all array items and call callback with results
Ox.loadAsync <f> Runs an asynchonous function on array elements
(arr, map, callback) -> <u> undefined
arr <s|[s]|[[s]]> string, Array of strins, or array of arrays of strings
arr <s|a> String or array of either strings or arrays of strings
Multiple strings in the same array will be processed simultaneously, but
multiple arrays of strings will be processed in that order.
callback <f> Callback function
results <o> result
results <o> Results
@*/
Ox.loadAsync = function(arr, map, callback) {
arr = Ox.makeArray(arr);
var i = 0, n = arr.length, results = {};
if(arr.some(Ox.isArray)) {
if (arr.some(Ox.isArray)) {
iterate();
} else {
arr.forEach(function(item) {