File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ const performanceFallback: CrossPlatformPerformance = {
28
28
timeOrigin : INITIAL_TIME ,
29
29
} ;
30
30
31
- export const crossPlatformPerformance : CrossPlatformPerformance = ( ( ) : CrossPlatformPerformance => {
31
+ const crossPlatformPerformance : CrossPlatformPerformance = ( ( ) : CrossPlatformPerformance => {
32
32
// React Native's performance.now() starts with a gigantic offset, so we need to wrap it.
33
33
if ( isReactNative ( ) ) {
34
34
return getReactNativePerformanceWrapper ( ) ;
@@ -74,7 +74,7 @@ export function timestampWithMs(): number {
74
74
/**
75
75
* Determines if running in react native
76
76
*/
77
- export function isReactNative ( ) : boolean {
77
+ function isReactNative ( ) : boolean {
78
78
return getGlobalObject < Window > ( ) . navigator ?. product === 'ReactNative' ;
79
79
}
80
80
You can’t perform that action at this time.
0 commit comments