Rocky_Mountain_Vending/.pnpm-store/v10/files/2c/c23195ea0dab694019b227627ac734195d5ee36c19a97a66b22e37322eeb8c886d00b25ec3a851f6be5cd12518101616f932a05e94e5f29ef0012bc405f400
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
634 B
Text

"use strict";
exports.getMinutes = getMinutes;
var _index = require("./toDate.cjs");
/**
* The {@link getMinutes} function options.
*/
/**
* @name getMinutes
* @category Minute Helpers
* @summary Get the minutes of the given date.
*
* @description
* Get the minutes of the given date.
*
* @param date - The given date
* @param options - The options
*
* @returns The minutes
*
* @example
* // Get the minutes of 29 February 2012 11:45:05:
* const result = getMinutes(new Date(2012, 1, 29, 11, 45, 5))
* //=> 45
*/
function getMinutes(date, options) {
return (0, _index.toDate)(date, options?.in).getMinutes();
}