|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
501 bytes
|
| Line | |
|---|
| 1 | var basePickBy = require('./_basePickBy'),
|
|---|
| 2 | hasIn = require('./hasIn');
|
|---|
| 3 |
|
|---|
| 4 | /**
|
|---|
| 5 | * The base implementation of `_.pick` without support for individual
|
|---|
| 6 | * property identifiers.
|
|---|
| 7 | *
|
|---|
| 8 | * @private
|
|---|
| 9 | * @param {Object} object The source object.
|
|---|
| 10 | * @param {string[]} paths The property paths to pick.
|
|---|
| 11 | * @returns {Object} Returns the new object.
|
|---|
| 12 | */
|
|---|
| 13 | function basePick(object, paths) {
|
|---|
| 14 | return basePickBy(object, paths, function(value, path) {
|
|---|
| 15 | return hasIn(object, path);
|
|---|
| 16 | });
|
|---|
| 17 | }
|
|---|
| 18 |
|
|---|
| 19 | module.exports = basePick;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.