end.js 137 Bytes
Newer Older
jatuporn Tonggasem's avatar
jatuporn Tonggasem committed
1 2 3 4 5 6 7 8
var stdout = require('../../');

stdout.write('stdout');
stdout.end(function() {
	setTimeout(function() {
		process.exit(0);
	}, 10);
});