utils.second2str
Home > @nipem/utils > second2str
second2str() function
Warning: This API is now obsolete.
second2str 已过时,请使用 prettyMS 代替
秒转换成 n天n小时n分钟n秒
Signature:export declare function second2str(seconds: number): string;
Parameters
Parameter | Type | Description |
---|---|---|
seconds | number | 需要被格式化的时间,单位秒 |
string
格式化后的时间字符串
Example
second2str(1234567) // "14天6小时56分7秒"
second2str(123.4567) // "2分3.456秒"