UNPKG

@polkadot/util

Version:
24 lines (20 loc) 660 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.formatDate = formatDate; // Copyright 2017-2022 @polkadot/util authors & contributors // SPDX-License-Identifier: Apache-2.0 /** @internal */ function zeroPad(value) { return value.toString().padStart(2, '0'); } 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}`; }