@rhombus-toolkit/obj 1.0.1 → 1.0.2

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.
@@ -194,6 +194,7 @@ declare function first<T>(source: Iterable<T>): T | undefined;
194
194
  * narrowed value it hands back yields nothing. Pass an array, a `Set`, or anything else that can
195
195
  * be iterated twice.
196
196
  */
197
+ declare function isAllThere<T>(items: Array<T | undefined>): items is T[];
197
198
  declare function isAllThere<T>(items: ReadonlyArray<T | undefined>): items is readonly T[];
198
199
  declare function isAllThere<T>(items: Iterable<T | undefined>): items is Iterable<T>;
199
200
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rhombus-toolkit/obj",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Typed counterparts of the Object.* statics, plus flattenMap.",
5
5
  "repository": {
6
6
  "type": "git",