fe-wrench
v1.0.1
Published
日常工具~
Downloads
1
Readme
日常工具函数封装
JavaScript
时间处理
getCountDownTime 时间倒计时
食用姿势
import {getCountDownTime} from '../src/index.js';
/**
* 倒计时
* @param starTimer 开始时间戳
* @param endTimer 结束时间戳
*/
getCountDownTime(1602674145, 1602674205, result => {
console.log('[ 更新倒计时 ]', `${result.hour}:${result.minute}:${result.second}`);
});