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>
26 lines
No EOL
756 B
Text
26 lines
No EOL
756 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.seconds = 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 second = (0, _interval.default)(function (date) {
|
|
date.setTime(date - date.getMilliseconds());
|
|
}, function (date, step) {
|
|
date.setTime(+date + step * _duration.durationSecond);
|
|
}, function (start, end) {
|
|
return (end - start) / _duration.durationSecond;
|
|
}, function (date) {
|
|
return date.getUTCSeconds();
|
|
});
|
|
var _default = second;
|
|
exports.default = _default;
|
|
var seconds = second.range;
|
|
exports.seconds = seconds; |