UNPKG

108 BJavaScriptView Raw
1export const warning = (value, ...args) => {
2 if (!value) {
3 console.warn(...args);
4 }
5};