1.0.1 • Published 3 years ago

fe-wrench v1.0.1

Weekly downloads
49
License
ISC
Repository
-
Last release
3 years ago

日常工具函数封装

JavaScript

时间处理

getCountDownTime 时间倒计时

食用姿势
import {getCountDownTime} from '../src/index.js';
/**
 * 倒计时
 * @param starTimer 开始时间戳
 * @param endTimer 结束时间戳
 */
getCountDownTime(1602674145, 1602674205, result => {
    console.log('[ 更新倒计时 ]', `${result.hour}:${result.minute}:${result.second}`);
});