UNPKG

@graphql-mesh/utils

Version:
32 lines (31 loc) 1.34 kB
export function withCancel(asyncIterable, onCancel) { return new Proxy(asyncIterable, { get(asyncIterable, prop) { if (prop === Symbol.asyncIterator) { return function getIteratorWithCancel() { const asyncIterator = asyncIterable[Symbol.asyncIterator](); return { next: asyncIterator.next ? (...args) => asyncIterator.next(...args) : undefined, return: async (...args) => { onCancel(); if (asyncIterator.return) { return asyncIterator.return(...args); } return { value: undefined, done: true, }; }, throw: asyncIterator.throw ? (...args) => asyncIterator.throw(...args) : undefined, }; }; } const propVal = asyncIterable[prop]; if (typeof propVal === 'function') { // eslint-disable-next-line @typescript-eslint/ban-types return propVal.bind(asyncIterable); } return propVal; }, }); }