CoolFace
Datasetpublic

basant307/AI_Governance_Project

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