mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-12-23 08:46:28 +00:00
7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
|
import { exit as exitNode } from 'node:process'
|
||
|
|
||
|
export function exit(message: string) {
|
||
|
console.error(message)
|
||
|
exitNode(1)
|
||
|
}
|