UNPKG

mappersmith

Version:

It is a lightweight rest client for node.js and the browser

10 lines (8 loc) 228 B
export const isTimeoutError = (e: Error) => { return e && e.name === 'TimeoutError' } export const createTimeoutError = (message: string) => { const error = new Error(message) error.name = 'TimeoutError' return error }