0.0.2 • Published 9 years ago
@nathanfaucett/object-for_each_right v0.0.2
object-for_each_right
executes a provided function once per object element.
var objectForEachRight = require("@nathanfaucett/object-for_each_right");
objectForEachRight({
a: "a",
b: "b",
c: "c"
},
function(value, key, object) {
console.log(value, key, object);
}
);