UNPKG

froebel

Version:
5 lines 167 B
export const assert = (condition, message, type = Error) => { if (!(typeof condition === "function" ? condition() : condition)) { throw new type(message); } };