Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/1182255e6e88899b55cb042229725401ea6cc3a0b3af62cd48b1bb2b032133dff36f39db12cf1226d33126f7bed05ae6ca3c93a33e2b128a4ed527b2b0db8a
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

29 lines
622 B
Text

"use strict";
exports.isSaturday = isSaturday;
var _index = require("./toDate.cjs");
/**
* The {@link isSaturday} function options.
*/
/**
* @name isSaturday
* @category Weekday Helpers
* @summary Is the given date Saturday?
*
* @description
* Is the given date Saturday?
*
* @param date - The date to check
* @param options - An object with options
*
* @returns The date is Saturday
*
* @example
* // Is 27 September 2014 Saturday?
* const result = isSaturday(new Date(2014, 8, 27))
* //=> true
*/
function isSaturday(date, options) {
return (0, _index.toDate)(date, options?.in).getDay() === 6;
}