@nathanfaucett/object-for_each_right
v0.0.2
Published
executes a provided function once per object element.
Downloads
3
Maintainers
Readme
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);
}
);