@polkadot/util
Version:
A collection of useful utilities for @polkadot
17 lines (15 loc) • 553 B
JavaScript
// Copyright 2017-2022 @polkadot/util authors & contributors
// SPDX-License-Identifier: Apache-2.0
/** @internal */
function zeroPad(value) {
return value.toString().padStart(2, '0');
}
export function formatDate(date) {
const year = date.getFullYear().toString();
const month = zeroPad(date.getMonth() + 1);
const day = zeroPad(date.getDate());
const hour = zeroPad(date.getHours());
const minute = zeroPad(date.getMinutes());
const second = zeroPad(date.getSeconds());
return `${year}-${month}-${day} ${hour}:${minute}:${second}`;
}