Rocky_Mountain_Vending/.pnpm-store/v10/files/b7/b7d8d82c43dc3ececa690db6d026d1810734c9c21e8cc8d38d672526656df8bf33cf2ca32eeac15ae5365f31006742ad80360624a74c18a8c2f900fdbf9402
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.isThursday = isThursday;
var _index = require("./toDate.cjs");
/**
* The {@link isThursday} function options.
*/
/**
* @name isThursday
* @category Weekday Helpers
* @summary Is the given date Thursday?
*
* @description
* Is the given date Thursday?
*
* @param date - The date to check
* @param options - An object with options
*
* @returns The date is Thursday
*
* @example
* // Is 25 September 2014 Thursday?
* const result = isThursday(new Date(2014, 8, 25))
* //=> true
*/
function isThursday(date, options) {
return (0, _index.toDate)(date, options?.in).getDay() === 4;
}