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