mirror of
https://github.com/nodejs/node.git
synced 2025-08-16 22:28:51 +02:00

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>
10 lines
229 B
JavaScript
10 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');
|