main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
456 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | var baseFor = require('./_baseFor'),
|
---|
| 2 | keys = require('./keys');
|
---|
| 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 | */
|
---|
| 12 | function baseForOwn(object, iteratee) {
|
---|
| 13 | return object && baseFor(object, iteratee, keys);
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | module.exports = baseForOwn;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.