@optionfactory/ful 4.0.7 → 4.0.8

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/ful.iife.js CHANGED
@@ -2912,7 +2912,7 @@ var ful = (function (exports, ftl) {
2912
2912
  get value() {
2913
2913
  const operator = this.#operator.getAttribute('value');
2914
2914
  const values = operator == 'BETWEEN' ? [this.#value1.value, this.#value2.value] : [this.#value1.value];
2915
- return values.some(v => v === '') ? undefined : [operator, "ISO_8601", ...values];
2915
+ return values.some(v => v === '') ? undefined : [operator, ...values];
2916
2916
  }
2917
2917
  set value(v) {
2918
2918
  if (v === null || v === undefined) {