We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a37d2cf commit 544bd16Copy full SHA for 544bd16
test/pseudo-tty/test-tty-isatty.js
@@ -10,7 +10,7 @@ strictEqual(isatty(2), true, 'stderr reported to not be a tty, but it is');
10
11
strictEqual(isatty(-1), false, '-1 reported to be a tty, but it is not');
12
strictEqual(isatty(55555), false, '55555 reported to be a tty, but it is not');
13
-strictEqual(isatty(2**31), false, '2^31 reported to be a tty, but it is not');
+strictEqual(isatty(2 ** 31), false, '2^31 reported to be a tty, but it is not');
14
strictEqual(isatty(1.1), false, '1.1 reported to be a tty, but it is not');
15
strictEqual(isatty('1'), false, '\'1\' reported to be a tty, but it is not');
16
strictEqual(isatty({}), false, '{} reported to be a tty, but it is not');
0 commit comments