Riichi/tests/assert.ts
2025-04-12 14:40:37 +02:00

9 lines
208 B
TypeScript

export function assert(b: boolean, msg: string): number {
if (b) {
console.log("%c[SUCCES] " + msg, "color: green");
return 1;
} else {
console.log("%c[ECHEC] " + msg, "color: red");
return 0;
}
}