39b01cbc6a86f69d69f1d28b4e1de36f44ba1e455fe1ea4449fe6014101ba6d3.json 610 B

1
  1. {"ast":null,"code":"import basePickBy from './_basePickBy.js';\nimport hasIn from './hasIn.js';\n\n/**\n * The base implementation of `_.pick` without support for individual\n * property identifiers.\n *\n * @private\n * @param {Object} object The source object.\n * @param {string[]} paths The property paths to pick.\n * @returns {Object} Returns the new object.\n */\nfunction basePick(object, paths) {\n return basePickBy(object, paths, function (value, path) {\n return hasIn(object, path);\n });\n}\nexport default basePick;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}