All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash.stubFalse.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
/**
 * This method returns `false`.
 *
 * @static
 * @memberOf _
 * @since 4.13.0
 * @category Util
 * @returns {boolean} Returns `false`.
 * @example
 *
 * _.times(2, _.stubFalse);
 * // => [false, false]
 */
function stubFalse() {
  return false;
}

module.exports = stubFalse;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy