UNPKG

neex

Version:

Neex - Modern Fullstack Framework Built on Express and Next.js. Fast to Start, Easy to Build, Ready to Deploy

10 lines (9 loc) 244 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.formatDuration = formatDuration; function formatDuration(ms) { if (ms < 1000) { return `${ms}ms`; } return `${(ms / 1000).toFixed(2)}s`; }