@optionfactory/ful 5.0.0 → 5.0.1

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.mjs CHANGED
@@ -1798,7 +1798,7 @@ class InputFile extends Input {
1798
1798
  return;
1799
1799
  }
1800
1800
  const unacceptable = [...this.files]
1801
- .filter(file => this.#accept.some(type => !file.name.toLowerCase().endsWith(type.toLowerCase())));
1801
+ .filter(file => !this.#accept.some(type => file.name.toLowerCase().endsWith(type.toLowerCase())));
1802
1802
 
1803
1803
  if (unacceptable.length === 0) {
1804
1804
  return;