Rocky_Mountain_Vending/.pnpm-store/v10/files/a2/8c033f0416e910754d7fe9d8da9289da5c25b661c14064e0ca01098fe9457abc4c383ce827745c025997386acab12eaaba77644ef846ac2b219539af8541d2
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
535 B
Text

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