UNPKG

212 BPlain TextView Raw
1export const throwIf = (condition, msg) => {
2 if (condition) throw new Error(`[Error]: ${msg} !`)
3}
4
5export const warnIf = (condition, msg) => {
6 if (condition) window.console.warn(`[Warning]: ${msg} .`)
7}