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>
14 lines
No EOL
594 B
Text
14 lines
No EOL
594 B
Text
// Copyright (c) 2020 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
export const isValid = (date) => {
|
|
return !isNaN(date.getTime());
|
|
};
|
|
export const toISO8601Compact = (date) => {
|
|
function leadZero(x) {
|
|
return (x > 9 ? '' : '0') + x;
|
|
}
|
|
return date.getFullYear() + leadZero(date.getMonth() + 1) + leadZero(date.getDate()) + 'T' +
|
|
leadZero(date.getHours()) + leadZero(date.getMinutes()) + leadZero(date.getSeconds());
|
|
};
|
|
//# sourceMappingURL=DateUtilities.js.map |