@d-i-t-a/reader 2.3.0 → 2.3.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/esm/index.js CHANGED
@@ -58765,7 +58765,7 @@ var ContentProtectionModule = class {
58765
58765
  }
58766
58766
  if (letters) {
58767
58767
  words = words.map(function(word) {
58768
- return scramble(word.split("")).join("");
58768
+ return word.includes("-") ? word : scramble(word.split("")).join("");
58769
58769
  });
58770
58770
  }
58771
58771
  return paragraph ? scramble(words).join(" ") : words.join(" ");