@creejs/commons-lang 2.1.32 → 2.1.33

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.32",
3
+ "version": "2.1.33",
4
4
  "description": "Commons Utils About Language, used inside creejs",
5
5
  "keywords": [
6
6
  "commons",
@@ -5,5 +5,7 @@ export default _default;
5
5
  /**
6
6
  * @template T
7
7
  * @param {Iterable<T>} iterable
8
+ * @returns {number}
9
+ * @throws {Error} Not Iterable
8
10
  */
9
- export function length<T>(iterable: Iterable<T>): any;
11
+ export function length<T>(iterable: Iterable<T>): number;