We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Description: Add universal line break expression
Example: The following converts all line breaks to unix-style with <br> tag:
<br>
var lorem = "Lorem ipsum.\r\nDolor sit\namet." lorem = VerEx().lineBreak().replace( lorem, "<br>\n" ); /* Outputs: Lorem ipsum.<br> Dolor sit<br> amet. */