main
Last change
on this file since 0c6b92a was d565449, checked in by stefan toskovski <stefantoska84@…>, 3 months ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
475 bytes
|
Rev | Line | |
---|
[d565449] | 1 | import createBaseFor from './_createBaseFor.js';
|
---|
| 2 |
|
---|
| 3 | /**
|
---|
| 4 | * This function is like `baseFor` except that it iterates over properties
|
---|
| 5 | * in the opposite order.
|
---|
| 6 | *
|
---|
| 7 | * @private
|
---|
| 8 | * @param {Object} object The object to iterate over.
|
---|
| 9 | * @param {Function} iteratee The function invoked per iteration.
|
---|
| 10 | * @param {Function} keysFunc The function to get the keys of `object`.
|
---|
| 11 | * @returns {Object} Returns `object`.
|
---|
| 12 | */
|
---|
| 13 | var baseForRight = createBaseFor(true);
|
---|
| 14 |
|
---|
| 15 | export default baseForRight;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.