Rocky_Mountain_Vending/.pnpm-store/v10/files/44/41bea50a18825b737021f9c301ede6de730cdf6c72928f6942b1a768ad43b65d96770fc1d8819528f081c441a77188564c073409849a47b08ca35d960fa32b
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

31 lines
662 B
Text

"use strict";
exports.startOfToday = startOfToday;
var _index = require("./startOfDay.cjs");
/**
* The {@link startOfToday} function options.
*/
/**
* @name startOfToday
* @category Day Helpers
* @summary Return the start of today.
* @pure false
*
* @description
* Return the start of today.
*
* @typeParam ContextDate - The `Date` type of the context function.
*
* @param options - An object with options
*
* @returns The start of today
*
* @example
* // If today is 6 October 2014:
* const result = startOfToday()
* //=> Mon Oct 6 2014 00:00:00
*/
function startOfToday(options) {
return (0, _index.startOfDay)(Date.now(), options);
}