summaryrefslogtreecommitdiffstats
path: root/node_modules/stdout-stream/test/fixtures/end.js
blob: cdfeba31ec0c280763dec07fbbb9c7fb54dacf8f (plain) (blame)
1
2
3
4
5
6
7
8
var stdout = require('../../');

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