@tinymce/beehive-flow
Version:
A CLI tool implementing the beehive flow git branching process
16 lines • 426 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.rights = void 0;
const tslib_1 = require("tslib");
const E = tslib_1.__importStar(require("fp-ts/Either"));
const rights = (eithers) => {
const r = [];
for (const e of eithers) {
if (E.isRight(e)) {
r.push(e.right);
}
}
return r;
};
exports.rights = rights;
//# sourceMappingURL=EitherUtils.js.map