mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
76e67e9884
Refs: https://github.com/nodejs/node/pull/26245 PR-URL: https://github.com/nodejs/node/pull/26492 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
11 lines
229 B
JavaScript
11 lines
229 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
// _stream_wrap is deprecated.
|
|
|
|
common.expectWarning('DeprecationWarning',
|
|
'The _stream_wrap module is deprecated.', 'DEP0125');
|
|
|
|
require('_stream_wrap');
|