Skip to content

Commit 8a08a43

Browse files
committed
re-order the imports of buildin modules in alphabetical order
1 parent 707e50a commit 8a08a43

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/async-hooks/test-tlswrap.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ const common = require('../common');
44
if (!common.hasCrypto)
55
common.skip('missing crypto');
66

7-
const path = require('path');
87
const assert = require('assert');
8+
const fs = require('fs');
9+
const path = require('path');
10+
const tls = require('tls');
11+
912
const tick = require('./tick');
1013
const initHooks = require('./init-hooks');
11-
const fs = require('fs');
1214
const { checkInvocations } = require('./hook-checks');
13-
const tls = require('tls');
1415

1516
const hooks = initHooks();
1617
hooks.enable();

0 commit comments

Comments
 (0)