@mrts/common 0.2.9 → 0.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,2 @@
1
- export declare function asyncItems<T>(iterable: AsyncIterable<T>): Promise<T[]>;
1
+ export declare function asyncIterableItems<T>(iterable: AsyncIterable<T>): Promise<T[]>;
2
2
  //# sourceMappingURL=iterables.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"iterables.d.ts","sourceRoot":"","sources":["../src/iterables.ts"],"names":[],"mappings":"AAAA,wBAAsB,UAAU,CAAC,CAAC,EAAE,QAAQ,EAAE,aAAa,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC,CAQ5E"}
1
+ {"version":3,"file":"iterables.d.ts","sourceRoot":"","sources":["../src/iterables.ts"],"names":[],"mappings":"AAAA,wBAAsB,kBAAkB,CAAC,CAAC,EAAE,QAAQ,EAAE,aAAa,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC,CAQpF"}
package/dist/iterables.js CHANGED
@@ -1,4 +1,4 @@
1
- export async function asyncItems(iterable) {
1
+ export async function asyncIterableItems(iterable) {
2
2
  const r = [];
3
3
  for await (const v of iterable) {
4
4
  r.push(v);
@@ -1 +1 @@
1
- {"version":3,"file":"iterables.js","sourceRoot":"","sources":["../src/iterables.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,KAAK,UAAU,UAAU,CAAI,QAA0B;IAC5D,MAAM,CAAC,GAAG,EAAS,CAAC;IACpB,IAAI,KAAK,EAAE,MAAM,CAAC,IAAI,QAAQ,EAAE,CAAC;QAC/B,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACZ,CAAC;IACD,OAAO,CAAC,CAAC;AAGX,CAAC"}
1
+ {"version":3,"file":"iterables.js","sourceRoot":"","sources":["../src/iterables.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,KAAK,UAAU,kBAAkB,CAAI,QAA0B;IACpE,MAAM,CAAC,GAAG,EAAS,CAAC;IACpB,IAAI,KAAK,EAAE,MAAM,CAAC,IAAI,QAAQ,EAAE,CAAC;QAC/B,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACZ,CAAC;IACD,OAAO,CAAC,CAAC;AAGX,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrts/common",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "MRTS - common",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "2374a162210c6aab2fd0a5c7e74dc44615f53ea0"
38
+ "gitHead": "77fd9e49354d02fc5bd48c7686163d805ac5b77e"
39
39
  }