Cleaned up repo and separated both bots into their respective folders
This commit is contained in:
parent
5414de60ca
commit
a9fda1fcb7
3134 changed files with 382980 additions and 31 deletions
14
sidBot-js/node_modules/lodash/_isMaskable.js
generated
vendored
Normal file
14
sidBot-js/node_modules/lodash/_isMaskable.js
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
var coreJsData = require('./_coreJsData'),
|
||||
isFunction = require('./isFunction'),
|
||||
stubFalse = require('./stubFalse');
|
||||
|
||||
/**
|
||||
* Checks if `func` is capable of being masked.
|
||||
*
|
||||
* @private
|
||||
* @param {*} value The value to check.
|
||||
* @returns {boolean} Returns `true` if `func` is maskable, else `false`.
|
||||
*/
|
||||
var isMaskable = coreJsData ? isFunction : stubFalse;
|
||||
|
||||
module.exports = isMaskable;
|
||||
Reference in a new issue