Last change
on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
593 bytes
|
Line | |
---|
1 | var createBaseFor = require('./_createBaseFor');
|
---|
2 |
|
---|
3 | /**
|
---|
4 | * The base implementation of `baseForOwn` which iterates over `object`
|
---|
5 | * properties returned by `keysFunc` and invokes `iteratee` for each property.
|
---|
6 | * Iteratee functions may exit iteration early by explicitly returning `false`.
|
---|
7 | *
|
---|
8 | * @private
|
---|
9 | * @param {Object} object The object to iterate over.
|
---|
10 | * @param {Function} iteratee The function invoked per iteration.
|
---|
11 | * @param {Function} keysFunc The function to get the keys of `object`.
|
---|
12 | * @returns {Object} Returns `object`.
|
---|
13 | */
|
---|
14 | var baseFor = createBaseFor();
|
---|
15 |
|
---|
16 | module.exports = baseFor;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.