summaryrefslogtreecommitdiff
path: root/web-timeplot/src/utils-format.js
diff options
context:
space:
mode:
authorgrothedev <grothedev@gmail.com>2026-05-29 21:49:20 -0400
committergrothedev <grothedev@gmail.com>2026-05-29 21:49:20 -0400
commit6196004b51a6850909c154f5402ff4858eab479a (patch)
tree126b8bb1600d0a656e0df016e25d08c390f3540e /web-timeplot/src/utils-format.js
parent27dc5849c3eaf4824d79938e7077abdbe2c82e24 (diff)
mv web stuff to root project dirHEADprototypeframeworkmain
Diffstat (limited to 'web-timeplot/src/utils-format.js')
-rw-r--r--web-timeplot/src/utils-format.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/web-timeplot/src/utils-format.js b/web-timeplot/src/utils-format.js
deleted file mode 100644
index f4eac88..0000000
--- a/web-timeplot/src/utils-format.js
+++ /dev/null
@@ -1,22 +0,0 @@
-export function formatDuration(ms) {
- const totalSeconds = Math.max(0, ms / 1000);
- if (totalSeconds < 60) {
- return `${totalSeconds.toFixed(2)}s`;
- }
-
- const minutes = Math.floor(totalSeconds / 60);
- const seconds = totalSeconds % 60;
- return `${minutes}m ${seconds.toFixed(1)}s`;
-}
-
-export function formatWallClock(timestampMs) {
- return new Intl.DateTimeFormat(undefined, {
- hour: '2-digit',
- minute: '2-digit',
- second: '2-digit',
- }).format(new Date(timestampMs));
-}
-
-export function formatValue(value) {
- return Number.isFinite(value) ? value.toFixed(3) : '—';
-}