UNPKG

ts-data-forge

Version:

[![npm version](https://img.shields.io/npm/v/ts-data-forge.svg)](https://www.npmjs.com/package/ts-data-forge) [![npm downloads](https://img.shields.io/npm/dm/ts-data-forge.svg)](https://www.npmjs.com/package/ts-data-forge) [![License](https://img.shields.

18 lines (15 loc) 478 B
import { unwrapErr } from './ternary-result-unwrap-err.mjs'; function unwrapErrOr(...args) { switch (args.length) { case 2: { const [result, defaultValue] = args; return unwrapErr(result) ?? defaultValue; } case 1: { const [defaultValue] = args; return (result) => unwrapErr(result) ?? defaultValue; } } } export { unwrapErrOr }; //# sourceMappingURL=ternary-result-unwrap-err-or.mjs.map