chrome-devtools-frontend
Version:
Chrome DevTools UI
16 lines (13 loc) • 586 B
text/typescript
// 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: Date): boolean => {
return !isNaN(date.getTime());
};
export const toISO8601Compact = (date: Date): string => {
function leadZero(x: number): string {
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());
};