Skip to content

Commit

Permalink
Update string-utils.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
caiocampos authored Nov 3, 2024
1 parent 4604ab1 commit 166c308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/string-utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const regexDot = /([.:;])\s+/g;
export const dots = [".", ":", ";"];
export const regexDot = /([.:;!?])\s+/g;
export const dots = [".", ":", ";", "!", "?"];
export const regexLink = /(http[s]?:\/\/[.a-z0-9@/-]+)/gi;
export const regexSpecial = /([\-;,.:\(\)\/\\@\'\"]|\s)+/g;
export const regexSpaces = /\s/g;
Expand Down

0 comments on commit 166c308

Please sign in to comment.