UNPKG

@clickup/pg-microsharding

Version:
23 lines 595 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.secToHuman = secToHuman; /** * Builds a human-readable string from a number of seconds. Examples: * - "12s" * - "2m5s" * - "1h2m5s" */ function secToHuman(sec) { if (sec === null) { return "null"; } sec = Math.round(Math.max(sec, 0)); return [ sec >= 3600 && `${Math.floor(sec / 3600)}h`, sec >= 60 && `${Math.floor((sec % 3600) / 60)}m`, sec >= 0 && `${sec % 60}s`, ] .filter(Boolean) .join(""); } //# sourceMappingURL=secToHuman.js.map