inquiry-monad
Version:
Inquiry is an expressive API that allows one ask multiple questions about a subject value, and observe all results. This process returns a collection of all passes, fails, and the original subject value.
10 lines • 359 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.$$inquirySymbol = Symbol();
exports.$$questionsetSymbol = Symbol();
exports.$$questionSymbol = Symbol();
exports.$$passSymbol = Symbol();
exports.$$failSymbol = Symbol();
exports.$$iouSymbol = Symbol();
exports.$$receiptSymbol = Symbol();
//# sourceMappingURL=symbols.js.map