Files
dewedev/node_modules/exit/test/fixtures/log.js
dwindown 7f2dd5260f Initial commit: Developer Tools MVP with visual editor
- Complete React app with 7 developer tools
- JSON Tool with visual structured editor
- Serialize Tool with visual structured editor
- URL, Base64, CSV/JSON, Beautifier, Diff tools
- Responsive navigation with dropdown menu
- Dark/light mode toggle
- Mobile-responsive design with sticky header
- All tools working with copy/paste functionality
2025-08-02 09:31:26 +07:00

26 lines
510 B
JavaScript

var exit = require('../../lib/exit');
var errorCode = process.argv[2];
var max = process.argv[3];
var modes = process.argv.slice(4);
function stdout(message) {
if (modes.indexOf('stdout') === -1) { return; }
process.stdout.write('stdout ' + message + '\n');
}
function stderr(message) {
if (modes.indexOf('stderr') === -1) { return; }
process.stderr.write('stderr ' + message + '\n');
}
for (var i = 0; i < max; i++) {
stdout(i);
stderr(i);
}
exit(errorCode);
stdout('fail');
stderr('fail');