relay/src/util.ts

5 lines
88 B
TypeScript
Raw Normal View History

2022-06-27 17:53:00 +00:00
export function errorExit(msg: string): void {
console.log(msg);
process.exit(1);
}