UNPKG
@mtdt.temp/browser-rum-core
Version:
latest (6.19.3)
6.19.3
6.19.2
6.19.1
6.19.0
Datadog browser RUM core utilities.
github.com/mtdt-temp/browser-rum-sdk
mtdt-temp/browser-rum-sdk
@mtdt.temp/browser-rum-core
/
src
/
domain
/
discardNegativeDuration.ts
7 lines
(5 loc)
•
291 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
type {
ServerDuration
}
from
'@mtdt.temp/browser-core'
import
{ isNumber }
from
'@mtdt.temp/browser-core'
export
function
discardNegativeDuration
(
duration: ServerDuration |
undefined
):
ServerDuration
|
undefined
{
return
isNumber
(duration) && duration <
0
?
undefined
: duration }