@optionfactory/ful 1.0.1 → 1.0.2

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
@@ -490,6 +490,7 @@ class HttpRequestBuilder {
490
490
  param(k, ...vs) {
491
491
  if (vs.length === 0 || vs[0] === null || vs[0] === undefined) {
492
492
  this.#params.delete(k);
493
+ return this;
493
494
  }
494
495
  for (const v of vs) {
495
496
  this.#params.append(k, v);