1 2 3
export default function assert(cond : boolean, message?: string) { if(!cond) { throw Error(message); } };