好用的时间转换插件
Install with npm
$ npm install duration-time-conversion
Or install with yarn
$ yarn add duration-time-conversion
import DT from "duration-time-conversion.js";
Or umd builds are also available
<script src="path/to/duration-time-conversion.js"></script>
Will expose the global variable to window.DT
// Duration to time
DT.d2t(3661.111) === "01:01:01.111";
// Time to Duration
DT.d2t("01:01:01.111") === 3661.111;
网友评论