| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 1 7 7 15 7 1 | define(['./forOwn'], function(forOwn) {
/**
* Creates a new object where all the values are the result of calling
* `callback`.
* @version 0.1.0
*/
function mapValues(obj, callback, thisObj) {
var output = {};
forOwn(obj, function(val, key, obj) {
output[key] = callback.call(thisObj, val, key, obj);
});
return output;
}
return mapValues;
});
|