mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 21:01:52 +00:00
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');
|