Rocky_Mountain_Vending/.pnpm-store/v10/files/4d/7751d5458b2cbc66397f685b90d540e77ddb0895a53cf18649a4276a2fbb1b809a653152853f9ac4d714deb591d2cadc88c321356f676f0795efac5c6949fb
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
270 B
Text

/**
* This method returns `true`.
*
* @static
* @memberOf _
* @since 4.13.0
* @category Util
* @returns {boolean} Returns `true`.
* @example
*
* _.times(2, _.stubTrue);
* // => [true, true]
*/
function stubTrue() {
return true;
}
export default stubTrue;