UNPKG

265 BJavaScriptView Raw
1const c = require('chalk')
2const { exit } = require('shelljs')
3
4const symbols = require('./symbols')
5
6const invariant = (test, message) => {
7 if (test) {
8 console.error(c.red(`${symbols.error} [ERROR] ${message}`))
9 exit(1)
10 }
11}
12
13module.exports = invariant