Rocky_Mountain_Vending/.pnpm-store/v10/files/97/353b0829e0e4bf4068b3fc95d2a8b9bc740d14cf3a2a452f2a6609c12e574ca753dd0cd8835fad1eab8cb0c3b9780b0e7cc8f2900d6402c6f3123a52f7e67e
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

26 lines
No EOL
827 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.hours = exports.default = void 0;
var _interval = _interopRequireDefault(require("./interval.js"));
var _duration = require("./duration.js");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var hour = (0, _interval.default)(function (date) {
date.setTime(date - date.getMilliseconds() - date.getSeconds() * _duration.durationSecond - date.getMinutes() * _duration.durationMinute);
}, function (date, step) {
date.setTime(+date + step * _duration.durationHour);
}, function (start, end) {
return (end - start) / _duration.durationHour;
}, function (date) {
return date.getHours();
});
var _default = hour;
exports.default = _default;
var hours = hour.range;
exports.hours = hours;