Files
Kmake/test/fixtures/disable-warning.js
2026-05-26 23:36:42 -07:00

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'
});