Skip to main content

isatty

function isatty
Jump to headingisatty(fd: number): boolean

The tty.isatty() method returns true if the given fd is associated with a TTY and false if it is not, including whenever fd is not a non-negative integer.

Parameters Jump to heading

A numeric file descriptor

Return Type Jump to heading

boolean
Back to top