Skip to content

nathanfaucett/js-object-map

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

object-map

object map for the browser and node.js

var objectMap = require("@nathanfaucett/object-map");


objectMap({
        a: "a",
        b: "b",
        c: "c"
    },
    function(value, key, object) {
        return value + key;
    }
); === {
    a: "aa",
    b: "bb",
    c: "cc"
};

About

object map for the browser and node.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published