UNPKG

735 BSource Map (JSON)View Raw
1{"version":3,"sources":["util/returniterator.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,UAAU,cAAc,CAAI,EAAe;IAC/C,IAAI,OAAO,EAAE,CAAC,MAAM,KAAK,UAAU,EAAE;QACnC,EAAE,CAAC,MAAM,EAAE,CAAC;KACb;AACH,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,mBAAmB,CAAI,EAAoB;IAC/D,IAAI,OAAO,EAAE,CAAC,MAAM,KAAK,UAAU,EAAE;QACnC,MAAM,EAAE,CAAC,MAAM,EAAE,CAAC;KACnB;AACH,CAAC","file":"returniterator.js","sourcesContent":["/**\n * @ignore\n */\nexport function returnIterator<T>(it: Iterator<T>) {\n if (typeof it.return === 'function') {\n it.return();\n }\n}\n\n/**\n * @ignore\n */\nexport async function returnAsyncIterator<T>(it: AsyncIterator<T>): Promise<void> {\n if (typeof it.return === 'function') {\n await it.return();\n }\n}\n"]}
\No newline at end of file