Roman Reiss | f29762f | 2015-05-19 11:00:06 | [diff] [blame] | 1 | 'use strict'; |
isaacs | bc18bf4 | 2012-06-16 16:05:28 | [diff] [blame] | 2 | console.error('before opening stdin'); |
3 | process.stdin.resume(); | ||||
4 | console.error('stdin opened'); | ||||
5 | console.error('pausing stdin'); | ||||
6 | process.stdin.pause(); | ||||
7 | console.error('opening again'); | ||||
8 | process.stdin.resume(); | ||||
9 | console.error('pausing again'); | ||||
10 | process.stdin.pause(); | ||||
11 | console.error('should exit now'); |