invariant.js 225 B

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