File tree 1 file changed +11
-10
lines changed
1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,6 @@ function lazyConstants() {
9
9
return _lazyConstants ;
10
10
}
11
11
12
- exports . setup_cpuUsage = setup_cpuUsage ;
13
- exports . setup_hrtime = setup_hrtime ;
14
- exports . setupMemoryUsage = setupMemoryUsage ;
15
- exports . setupConfig = setupConfig ;
16
- exports . setupKillAndExit = setupKillAndExit ;
17
- exports . setupSignalHandlers = setupSignalHandlers ;
18
- exports . setupChannel = setupChannel ;
19
- exports . setupRawDebug = setupRawDebug ;
20
-
21
-
22
12
const assert = process . assert = function ( x , msg ) {
23
13
if ( ! x ) throw new Error ( msg || 'assertion error' ) ;
24
14
} ;
@@ -267,3 +257,14 @@ function setupRawDebug() {
267
257
rawDebug ( format . apply ( null , arguments ) ) ;
268
258
} ;
269
259
}
260
+
261
+ module . exports = {
262
+ setup_cpuUsage,
263
+ setup_hrtime,
264
+ setupMemoryUsage,
265
+ setupConfig,
266
+ setupKillAndExit,
267
+ setupSignalHandlers,
268
+ setupChannel,
269
+ setupRawDebug
270
+ } ;
You can’t perform that action at this time.
0 commit comments