added code for bot

This commit is contained in:
Laurens van der Drift
2024-05-27 21:46:01 +02:00
parent 15f2ac44a3
commit 79335ea096
3073 changed files with 342012 additions and 0 deletions

19
Bot/node_modules/lodash/_basePick.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
var basePickBy = require('./_basePickBy'),
hasIn = require('./hasIn');
/**
* 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);
});
}
module.exports = basePick;