mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-27 18:37:39 +00:00
chore: update frontend build for v1.1.82 [skip ci]
This commit is contained in:
19
web/admin-spa/node_modules/lodash-es/_basePick.js
generated
vendored
19
web/admin-spa/node_modules/lodash-es/_basePick.js
generated
vendored
@@ -1,19 +0,0 @@
|
||||
import basePickBy from './_basePickBy.js';
|
||||
import hasIn from './hasIn.js';
|
||||
|
||||
/**
|
||||
* The base implementation of `_.pick` without support for individual
|
||||
* property identifiers.
|
||||
*
|
||||
* @private
|
||||
* @param {Object} object The source object.
|
||||
* @param {string[]} paths The property paths to pick.
|
||||
* @returns {Object} Returns the new object.
|
||||
*/
|
||||
function basePick(object, paths) {
|
||||
return basePickBy(object, paths, function(value, path) {
|
||||
return hasIn(object, path);
|
||||
});
|
||||
}
|
||||
|
||||
export default basePick;
|
||||
Reference in New Issue
Block a user