Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 805 Bytes

exit.md

File metadata and controls

37 lines (26 loc) · 805 Bytes

exit (function)

Exit the yavascript process.

Provides the same functionality as the shell builtin of the same name.

If exit is called with an argument, that argument is used as the exit code. Otherwise, exit.code is used, which defaults to 0.

exit.code will also be used as the exit status code for the yavascript process if the process exits normally.

Attempting to call exit or set exit.code within a Worker will fail and throw an error.

const exit: {
  (code?: number): never;
  code: number;
};

exit(...) (call signature)

(code?: number): never;

exit.code (number property)

code: number;