UNPKG

react-native-panda-ui

Version:

A set of easily styled components to get you started fast

7 lines (6 loc) 197 B
// A way to provide descriptive errors in critical code paths. export default function invariant(condition, message) { if (!condition) { throw new Error(`Invariant Violation: ${message}`); } }