Rocky_Mountain_Vending/.pnpm-store/v10/files/e4/1736fb6147d9eeceb4b09c79ccfdfe0642cd5cc2abf9776048ff8a2fec577b8edc83fc24c1ed24af6ec0969c29c3deef2cc1176d79eb55e6c3b8d2d01b308e
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

24 lines
592 B
Text

"use strict";
exports.getMilliseconds = getMilliseconds;
var _index = require("./toDate.cjs");
/**
* @name getMilliseconds
* @category Millisecond Helpers
* @summary Get the milliseconds of the given date.
*
* @description
* Get the milliseconds of the given date.
*
* @param date - The given date
*
* @returns The milliseconds
*
* @example
* // Get the milliseconds of 29 February 2012 11:45:05.123:
* const result = getMilliseconds(new Date(2012, 1, 29, 11, 45, 5, 123))
* //=> 123
*/
function getMilliseconds(date) {
return (0, _index.toDate)(date).getMilliseconds();
}