invariant.js 280 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.invariant = void 0;
  4. var invariant = function (assertion, error) {
  5. if (!assertion) {
  6. console.error(error);
  7. }
  8. };
  9. exports.invariant = invariant;
  10. //# sourceMappingURL=invariant.js.map