source: imaps-frontend/node_modules/lodash-es/_baseForOwn.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 454 bytes
Line 
1import baseFor from './_baseFor.js';
2import keys from './keys.js';
3
4/**
5 * The base implementation of `_.forOwn` 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 */
12function baseForOwn(object, iteratee) {
13 return object && baseFor(object, iteratee, keys);
14}
15
16export default baseForOwn;
Note: See TracBrowser for help on using the repository browser.