Skip to content

Either.toPromise()

Latest
Compare
Choose a tag to compare
@allanhortle allanhortle released this 18 Dec 22:43
· 9 commits to master since this release

Eithers can now be turned into to a promise.

Left(value).toPromise() -> Promise.reject(value);
Right(value).toPromise() -> Promise.resolve(value);