Files
rspade_system/node_modules/exit/test/fixtures/log-broken.js
root bd5809fdbd Reorganize RSpade directory structure for clarity
Improve Jqhtml_Integration.js documentation with hydration system explanation
Add jqhtml-laravel integration packages for traditional Laravel projects

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-24 09:41:48 +00:00

24 lines
479 B
JavaScript

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);
}
process.exit(errorCode);
stdout('fail');
stderr('fail');