UNPKG

483 BSource Map (JSON)View Raw
1{"version":3,"sources":["iterable/toarray.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,OAAO,CAAU,MAAyB;IACxD,MAAM,OAAO,GAAG,EAAe,CAAC;IAChC,KAAK,MAAM,IAAI,IAAI,MAAM,EAAE;QACzB,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACpB;IACD,OAAO,OAAO,CAAC;AACjB,CAAC","file":"toarray.js","sourcesContent":["export function toArray<TSource>(source: Iterable<TSource>): TSource[] {\n const results = [] as TSource[];\n for (const item of source) {\n results.push(item);\n }\n return results;\n}\n"]}
\No newline at end of file