@sprucelabs/schema 25.5.67 → 25.5.68

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.
@@ -3,7 +3,7 @@ const assertOptions = function (options, toCheck) {
3
3
  const missing = [];
4
4
  for (const check of toCheck) {
5
5
  //@ts-ignore
6
- if (!options[check]) {
6
+ if (!(options === null || options === void 0 ? void 0 : options[check])) {
7
7
  missing.push(check);
8
8
  }
9
9
  }
@@ -8,7 +8,7 @@ const assertOptions = function (options, toCheck) {
8
8
  const missing = [];
9
9
  for (const check of toCheck) {
10
10
  //@ts-ignore
11
- if (!options[check]) {
11
+ if (!(options === null || options === void 0 ? void 0 : options[check])) {
12
12
  missing.push(check);
13
13
  }
14
14
  }
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "!build/__tests__",
9
9
  "esm"
10
10
  ],
11
- "version": "25.5.67",
11
+ "version": "25.5.68",
12
12
  "main": "./build/index.js",
13
13
  "types": "./build/index.d.ts",
14
14
  "module": "./build/esm/index.js",