graphql
Version:
A Query Language and Runtime which can target any service.
11 lines • 329 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.returnIteratorCatchingErrors = returnIteratorCatchingErrors;
async function returnIteratorCatchingErrors(iterator) {
try {
await iterator.return?.();
}
catch {
}
}
//# sourceMappingURL=returnIteratorCatchingErrors.js.map