Rocky_Mountain_Vending/.pnpm-store/v10/files/87/172b4501fc2471e5478c9c576ae5ca9224f39e8629fb55c3c3aab77e1f45da8993a055b1a55ed52ed676647d370e3ff270764db0788da66ceaa8598f7755bd
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

36 lines
842 B
Text

"use strict";
exports.newDate = newDate;
var _index = require("./_core/newDate.cjs");
/**
* @name newDate
* @category Common Helpers
* @summary Create a date object of the given params.
*
* @param {Number} year - the number of years
* @param {Number} monthIndex - the number of months 0-11
* @param {Number} date - the number of days 1-31
* @param {Number} [hours=0] - the number of hours 0-23
* @param {Number} [minutes=0] - the number of minutes 0-59
* @param {Number} [seconds=0] - the number of seconds 0-59
* @param {Number} [ms=0] - the number of milliseconds 0-999
* @returns {Date} the new date
*/
function newDate(
year,
monthIndex,
date,
hours = 0,
minutes = 0,
seconds = 0,
ms = 0,
) {
return (0, _index.newDate)(
year,
monthIndex,
date,
hours,
minutes,
seconds,
ms,
);
}