UNPKG
museaikit
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.1.0
A powerful music-focused AI toolkit
flufy3d/MuseAIKit
museaikit
/
esm
/
core
/
compat
/
performance_node.js
10 lines
•
294 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
NS_PER_SEC
=
1e9
;
const
time =
global
.
process
.
hrtime
();
export
const
now
= (
) => {
const
diff =
global
.
process
.
hrtime
(time);
return
diff[
0
] + diff[
1
] /
NS_PER_SEC
; };
export
const
timing = {
navigationStart
:
Date
.
now
(), };
//# sourceMappingURL=performance_node.js.map