mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
16 lines
289 B
JavaScript
16 lines
289 B
JavaScript
|
'use strict';
|
||
|
|
||
|
process.emitWarning('Deprecation Warning 1', {
|
||
|
code: 'DEP1',
|
||
|
type: 'DeprecationWarning'
|
||
|
});
|
||
|
|
||
|
process.emitWarning('Deprecation Warning 2', {
|
||
|
code: 'DEP2',
|
||
|
type: 'DeprecationWarning'
|
||
|
});
|
||
|
|
||
|
process.emitWarning('Experimental Warning', {
|
||
|
type: 'ExperimentalWarning'
|
||
|
});
|