Sha256: 258da9eceec2f6d625f28a87adaced55f17e51959d0e1811608c6e2aece53dbc
Contents?: true
Size: 500 Bytes
Versions: 69
Compression:
Stored size: 500 Bytes
Contents
var forOwn = require('./forOwn'); var makeIterator = require('../function/makeIterator_'); /** * Creates a new object where all the values are the result of calling * `callback`. */ function mapValues(obj, callback, thisObj) { callback = makeIterator(callback, thisObj); var output = {}; forOwn(obj, function(val, key, obj) { output[key] = callback(val, key, obj); }); return output; } module.exports = mapValues;
Version data entries
69 entries across 69 versions & 2 rubygems