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:
532 bytes
|
Line | |
---|
1 | import arrayMap from './_arrayMap.js';
|
---|
2 |
|
---|
3 | /**
|
---|
4 | * The base implementation of `_.values` and `_.valuesIn` which creates an
|
---|
5 | * array of `object` property values corresponding to the property names
|
---|
6 | * of `props`.
|
---|
7 | *
|
---|
8 | * @private
|
---|
9 | * @param {Object} object The object to query.
|
---|
10 | * @param {Array} props The property names to get values for.
|
---|
11 | * @returns {Object} Returns the array of property values.
|
---|
12 | */
|
---|
13 | function baseValues(object, props) {
|
---|
14 | return arrayMap(props, function(key) {
|
---|
15 | return object[key];
|
---|
16 | });
|
---|
17 | }
|
---|
18 |
|
---|
19 | export default baseValues;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.