@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/dist/cjs/index-dev.cjs +52 -2
- package/dist/cjs/index-dev.cjs.map +1 -1
- package/dist/cjs/index-min.cjs +1 -1
- package/dist/cjs/index-min.cjs.map +1 -1
- package/dist/esm/index-dev.js +52 -3
- package/dist/esm/index-dev.js.map +1 -1
- package/dist/esm/index-min.js +1 -1
- package/dist/esm/index-min.js.map +1 -1
- package/dist/umd/index.dev.js +52 -2
- package/dist/umd/index.dev.js.map +1 -1
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +3 -1
package/package.json
CHANGED
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
|
-
|
|
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 };
|