@danielhaim/titlecaser 1.2.28 → 1.2.29

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielhaim/titlecaser",
3
- "version": "1.2.28",
3
+ "version": "1.2.29",
4
4
  "description": "Converts a string to title case with multiple style options, ability to ignore certain words, and handle acronyms",
5
5
  "keywords": [
6
6
  "titlecase",
package/src/TitleCaser.js CHANGED
@@ -138,8 +138,7 @@ export class TitleCaser {
138
138
 
139
139
  // Replace the nl2br placeholder with <br> tags.
140
140
  inputString = inputString.replace(/nl2br /gi, "<br />");
141
- console.log(inputString);
142
-
141
+
143
142
  // Return the string.
144
143
  return inputString;
145
144
  }