@bobfrankston/rmfmail 1.1.27 → 1.1.28

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.
@@ -7126,6 +7126,10 @@ function tokenizeParenList(s) {
7126
7126
  let j = i;
7127
7127
  while (j < end && str[j] !== " " && str[j] !== ")" && str[j] !== "(")
7128
7128
  j++;
7129
+ if (j === i) {
7130
+ i++;
7131
+ continue;
7132
+ }
7129
7133
  tokens.push(str.substring(i, j));
7130
7134
  i = j;
7131
7135
  }