Sharkey/packages/megalodon/src/cancel.ts

14 lines
294 B
TypeScript
Raw Normal View History

2023-09-23 18:49:47 +02:00
export class RequestCanceledError extends Error {
public isCancel: boolean
2023-09-23 18:49:47 +02:00
constructor(msg: string) {
super(msg)
this.isCancel = true
Object.setPrototypeOf(this, RequestCanceledError)
}
2023-09-23 18:49:47 +02:00
}
export const isCancel = (value: any): boolean => {
return value && value.isCancel
}