UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

6 lines (5 loc) 230 B
import {isCustomError} from "../custom-error/is-custom-error.mjs"; import {TIMEOUT_ERROR_NAME} from "./timeout-error-name.constant.mjs"; export function isTimeoutError(value) { return isCustomError(value, TIMEOUT_ERROR_NAME); }