@creejs/commons-lang 2.1.34 → 2.1.35

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creejs/commons-lang",
3
- "version": "2.1.34",
3
+ "version": "2.1.35",
4
4
  "description": "Commons Utils About Language, used inside creejs",
5
5
  "keywords": [
6
6
  "commons",
package/types/index.d.ts CHANGED
@@ -18,6 +18,7 @@ declare namespace _default {
18
18
  export { TimeUtils };
19
19
  export { ArrayUtils };
20
20
  export { IteratorUtils };
21
+ export { IterableUtils };
21
22
  }
22
23
  export default _default;
23
24
  import _Error from './_error.js';
@@ -36,4 +37,5 @@ import ArrayBufferUtils from './array-buffer-utils.js';
36
37
  import TimeUtils from './time-utils.js';
37
38
  import ArrayUtils from './array-utils.js';
38
39
  import IteratorUtils from './iterator-utils.js';
39
- export { _Error, AggregatedError, LangUtils, StringUtils, TypeUtils, TypeAssert, ExecUtils, PromiseUtils, LangUtils as Lang, TypeUtils as Type, ExecUtils as Exec, ClassProxyUtils, InstanceProxyUtils, ReflectUtils, TypedArrayUtils, ArrayBufferUtils, TimeUtils, ArrayUtils, IteratorUtils };
40
+ import IterableUtils from './iterable-utils.js';
41
+ export { _Error, AggregatedError, LangUtils, StringUtils, TypeUtils, TypeAssert, ExecUtils, PromiseUtils, LangUtils as Lang, TypeUtils as Type, ExecUtils as Exec, ClassProxyUtils, InstanceProxyUtils, ReflectUtils, TypedArrayUtils, ArrayBufferUtils, TimeUtils, ArrayUtils, IteratorUtils, IterableUtils };