mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
52db376c39
Co-authored-by: Peter Wielander <mittgfu@gmail.com>
6 lines
112 B
TypeScript
6 lines
112 B
TypeScript
import ms from 'ms';
|
|
|
|
export const formatDurationUtil = async (duration: string) => {
|
|
return ms(duration);
|
|
};
|