Rocky_Mountain_Vending/.pnpm-store/v10/files/e7/2ac75a26f8eb97b36134553104c89d66097d9e4afd001c3851952619cefdee08435613c7ccc81312814b1abecf484372b2c1ce0ea441155475e3854f1b0cb8
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

27 lines
748 B
Text

"use strict";
exports.isThisSecond = isThisSecond;
var _index = require("./constructNow.cjs");
var _index2 = require("./isSameSecond.cjs");
/**
* @name isThisSecond
* @category Second Helpers
* @summary Is the given date in the same second as the current date?
* @pure false
*
* @description
* Is the given date in the same second as the current date?
*
* @param date - The date to check
*
* @returns The date is in this second
*
* @example
* // If now is 25 September 2014 18:30:15.500,
* // is 25 September 2014 18:30:15.000 in this second?
* const result = isThisSecond(new Date(2014, 8, 25, 18, 30, 15))
* //=> true
*/
function isThisSecond(date) {
return (0, _index2.isSameSecond)(date, (0, _index.constructNow)(date));
}