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