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>
19 lines
No EOL
488 B
Text
19 lines
No EOL
488 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
|
|
var _isoFormat = require("./isoFormat.js");
|
|
|
|
var _defaultLocale = require("./defaultLocale.js");
|
|
|
|
function parseIsoNative(string) {
|
|
var date = new Date(string);
|
|
return isNaN(date) ? null : date;
|
|
}
|
|
|
|
var parseIso = +new Date("2000-01-01T00:00:00.000Z") ? parseIsoNative : (0, _defaultLocale.utcParse)(_isoFormat.isoSpecifier);
|
|
var _default = parseIso;
|
|
exports.default = _default; |