Sha256: 26ecdb68277ea5c39cf5901061702602a472570d5ae2c0b4c7e6eae4e6282705
Contents?: true
Size: 308 Bytes
Versions: 26
Compression:
Stored size: 308 Bytes
Contents
/** * Returns a timestamp string in a "HH:MM:SS" format. */ export function getTimestamp(): string { const now = new Date() return [now.getHours(), now.getMinutes(), now.getSeconds()] .map(String) .map((chunk) => chunk.slice(0, 2)) .map((chunk) => chunk.padStart(2, '0')) .join(':') }
Version data entries
26 entries across 26 versions & 1 rubygems