UNPKG
@bugsnag/core-performance
Version:
beta (0.0.2-alpha.3)
latest (3.2.0)
next (3.2.0-alpha.0)
3.2.0
3.2.0-alpha.0
3.0.0
2.15.0
2.14.0
2.13.0
2.12.0
2.11.0
2.10.0
2.9.1
2.9.0
2.8.1-alpha.0
2.8.0
2.7.1
2.7.0
2.6.0
2.5.0
2.4.1
2.4.0
2.3.0-alpha.0
2.2.0
2.1.0
2.0.0
1.2.1-alpha.4
1.2.1-alpha.3
1.2.1-alpha.2
1.2.0
1.2.0-alpha.0
1.1.0
1.1.0-alpha.0
1.0.0
0.3.0
0.2.0
0.1.1
0.1.1-alpha.1
0.1.1-alpha.0
0.1.0-alpha.0
0.0.2
0.0.2-alpha.3
0.0.2-alpha.2
0.0.2-alpha.1
0.0.2-alpha.0
0.0.1-alpha.0
Core performance client
github.com/bugsnag/bugsnag-js-performance
bugsnag/bugsnag-js-performance
@bugsnag/core-performance
/
dist
/
clock.js
7 lines
(5 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
NANOSECONDS_IN_MILLISECONDS
=
1000000
;
function
millisecondsToNanoseconds
(
milliseconds
) {
return
Math
.
round
(milliseconds *
NANOSECONDS_IN_MILLISECONDS
); }
export
{ millisecondsToNanoseconds };