Rocky_Mountain_Vending/.pnpm-store/v10/files/01/6a5cbbf9e294337a9eb1df1780d49cf9dcd6f79da0bb66026e3b67cab102e51f77fc9e9b2baaddb819f534d3ad28cb4ee8213a4adbc87f4efe8d6d933dc83b
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
632 B
Text

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