@tinymce/beehive-flow
Version:
A CLI tool implementing the beehive flow git branching process
17 lines (14 loc) • 450 B
text/typescript
import * as t from 'io-ts';
import { pipe } from 'fp-ts/function';
import * as E from 'fp-ts/Either';
type Either<R, A> = E.Either<R, A>;
/**
* All this really does is change the shape of the error side of the Either
* @param f
*/
export const validateEither = <I, O> (f: (i: I) => Either<string, O>): t.Validate<I, O> =>
(value, context) =>
pipe(
f(value),
E.mapLeft((message: string) => [{ value, context, message }])
);