hexo/node_modules/stdout-stream/test/fixtures/end.js

8 lines
144 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
var stdout = require('../../');
stdout.write('stdout');
stdout.end(function() {
setTimeout(function() {
process.exit(0);
}, 10);
2023-09-25 15:58:56 +08:00
});