Rocky_Mountain_Vending/.pnpm-store/v10/files/4e/70c7bc0b7fbd653eb976ebac56af1a022a389cf9e56ba18de1fdddd2f7358d3e1626f29b2b91077d2d4b11e2c71cca1fadae9aeac7a586066100d40b8b8b0f
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

18 lines
278 B
Text

/**
* 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;
}
export default stubFalse;