main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
737 bytes
|
Line | |
---|
1 | import arrayPush from './_arrayPush.js';
|
---|
2 | import isArray from './isArray.js';
|
---|
3 |
|
---|
4 | /**
|
---|
5 | * The base implementation of `getAllKeys` and `getAllKeysIn` which uses
|
---|
6 | * `keysFunc` and `symbolsFunc` to get the enumerable property names and
|
---|
7 | * symbols of `object`.
|
---|
8 | *
|
---|
9 | * @private
|
---|
10 | * @param {Object} object The object to query.
|
---|
11 | * @param {Function} keysFunc The function to get the keys of `object`.
|
---|
12 | * @param {Function} symbolsFunc The function to get the symbols of `object`.
|
---|
13 | * @returns {Array} Returns the array of property names and symbols.
|
---|
14 | */
|
---|
15 | function baseGetAllKeys(object, keysFunc, symbolsFunc) {
|
---|
16 | var result = keysFunc(object);
|
---|
17 | return isArray(object) ? result : arrayPush(result, symbolsFunc(object));
|
---|
18 | }
|
---|
19 |
|
---|
20 | export default baseGetAllKeys;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.