Name
sn_devstudio._gr
Description
No description available
Script
var _gr = function(gr) {
return {
map : function(iteratee, context) {
var collection = [];
while (gr.next()) {
collection.push(iteratee.call(context || this, gr));
}
return collection;
},
each : function(iteratee, context) {
while (gr.next()) {
iteratee.call(context || this, gr);
}
},
reduce : function(iteratee, memo, context) {
while (gr.next()) {
memo = iteratee.call(context || this, memo, gr);
}
return memo;
}
}
}
Sys ID
6d2e0135eb83310007e48c1cf106fea7