6 lines
85 B
TypeScript
6 lines
85 B
TypeScript
const exitProcess = (): void => {
|
|
process.exit(0);
|
|
};
|
|
|
|
export default exitProcess;
|