Closed
Description
Windows 10 Pro (64-bit)
Version 10.0.10240 Build 10240
$ node -v
v4.2.1
$ node
> ^C^C^C^C
# Doesn't detect the interrupt, allows me to keep hitting CTRL+C N times
# Hitting Enter after N CTRL+C registers the interupt, if N >= 2, exits
$ node
> ^C^C^C^C^C^C^C^C^C^C
# <Enter>
(^C again to quit)
>
# Says to hit it again, but it exits immediately
$ node
> ^C
# <Enter>
(^C again to quit)
>
>
(^C again to quit)
>
If the first command is not CTRL+C, it works as expected:
$ node
> 1 + 1
1 + 1
2
>
(^C again to quit)
>