@andrew_l/toolkit 0.2.9 → 0.2.11

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.cjs CHANGED
@@ -406,7 +406,7 @@ function equal(actual, expected, message) {
406
406
  }
407
407
  }
408
408
  function notEmpty(value, message) {
409
- if (!isEmpty(value)) {
409
+ if (isEmpty(value)) {
410
410
  throw toError$1(notEmpty, value, message, "Expected not empty value.");
411
411
  }
412
412
  }