Whether a thrown value represents cancellation.
catch (error) { if (isCancellation(error)) return undefined; throw error;} Copy
catch (error) { if (isCancellation(error)) return undefined; throw error;}
Whether a thrown value represents cancellation.