UNPKG

@yoroi/common

Version:

The Common package of Yoroi SDK

14 lines (13 loc) 288 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isLeft = isLeft; exports.isRight = isRight; function isLeft(either) { return either.tag === 'left'; } function isRight(either) { return either.tag === 'right'; } //# sourceMappingURL=monads.js.map