CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
stubFalse.js19 linesDownload Raw Back to lodash-es
1/**2 * This method returns `false`.3 *4 * @static5 * @memberOf _6 * @since 4.13.07 * @category Util8 * @returns {boolean} Returns `false`.9 * @example10 *11 * _.times(2, _.stubFalse);12 * // => [false, false]13 */14function stubFalse() {15  return false;16}17 18export default stubFalse;19 
basant307/AI_Governance_Project · CoolFace