文件名称:convert-hrtime:将process.hrtime()的结果转换为秒,毫秒,纳秒
文件大小:5KB
文件格式:ZIP
更新时间:2024-05-19 14:52:27
JavaScript
转换时间 将的结果转换为秒,毫秒,纳秒 安装 $ npm install convert-hrtime 用法 import convertHrtime from 'convert-hrtime' ; const startTime = process . hrtime . bigint ( ) ; expensiveCalculation ( ) ; const diff = process . hrtime . bigint ( ) - startTime ; convertHrtime ( diff ) ; //=> {seconds: 0.000002399, milliseconds: 0.002399, nanoseconds: 2399n}
【文件预览】:
convert-hrtime-main
----index.test-d.ts(297B)
----.gitattributes(19B)
----.github()
--------workflows()
----test.js(328B)
----license(1KB)
----index.d.ts(616B)
----.npmrc(19B)
----.editorconfig(175B)
----.gitignore(23B)
----index.js(250B)
----readme.md(502B)
----package.json(850B)