@andrew_l/toolkit 0.2.9 → 0.2.10

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/index.mjs CHANGED
@@ -395,7 +395,7 @@ function equal(actual, expected, message) {
395
395
  }
396
396
  }
397
397
  function notEmpty(value, message) {
398
- if (!isEmpty(value)) {
398
+ if (isEmpty(value)) {
399
399
  throw toError$1(notEmpty, value, message, "Expected not empty value.");
400
400
  }
401
401
  }