• 格式化毫秒值

    参数

    • ms: number

      毫秒值

    • 可选format: string = 'd天hh时mm分ss秒'

      格式化模板,默认'd天hh时mm分ss秒'

    返回 string

    formatMilliseconds(1000, 'd天hh时'); // '0天00时'
    formatMilliseconds(1000); // '0天00时00分01秒'
    formatMilliseconds(60 * 1000); // '0天00时01分00秒'
    formatMilliseconds(60 * 60 * 1000); // '0天01时00分00秒'
    formatMilliseconds(60 * 60 * 24 * 1000); // '1天00时00分00秒'