Security update for Core, with self-updated composer
[yaffs-website] / node_modules / grunt-legacy-util / node_modules / lodash / _baseForIn.js
1 var baseFor = require('./_baseFor'),
2     keysIn = require('./keysIn');
3
4 /**
5  * The base implementation of `_.forIn` without support for iteratee shorthands.
6  *
7  * @private
8  * @param {Object} object The object to iterate over.
9  * @param {Function} iteratee The function invoked per iteration.
10  * @returns {Object} Returns `object`.
11  */
12 function baseForIn(object, iteratee) {
13   return object == null ? object : baseFor(object, iteratee, keysIn);
14 }
15
16 module.exports = baseForIn;