12345678910111213141516171819202122232425262728293031 |
-
-
-
- function baseValues(object, props) {
- var index = -1,
- length = props.length,
- result = Array(length);
-
- while (++index < length) {
- result[index] = object[props[index]];
- }
- return result;
- }
-
- module.exports = baseValues;
|