We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58e892d commit 71cce3fCopy full SHA for 71cce3f
4 files changed
lib/dgram_uv.js lib/dgram.jslib/dgram_uv.js renamed to lib/dgram.js
lib/dgram_legacy.js
node.gyp
@@ -19,8 +19,7 @@
19
'lib/console.js',
20
'lib/constants.js',
21
'lib/crypto.js',
22
- 'lib/dgram_legacy.js',
23
- 'lib/dgram_uv.js',
+ 'lib/dgram.js',
24
'lib/dns.js',
25
'lib/events.js',
26
'lib/freelist.js',
src/node.js
@@ -461,9 +461,6 @@
461
case 'tty':
462
return process.features.uv ? 'tty_uv' : 'tty_legacy';
463
464
- case 'dgram':
465
- return process.features.uv ? 'dgram_uv' : 'dgram_legacy';
466
-
467
default:
468
return id;
469
}
0 commit comments