Bump 0.18.2
All checks were successful
Build / Build NPM Project (push) Successful in 25s
Build / Tag Version (push) Successful in 7s
Build / Publish Documentation (push) Successful in 26s

This commit is contained in:
2024-10-12 12:30:23 -04:00
parent e4229296c1
commit c51239d12b
3 changed files with 4 additions and 4 deletions

View File

@ -18,6 +18,6 @@ export function gravatar(email: string, def='mp') {
* @param {string} value String which should be escaped
* @return {string} New escaped sequence
*/
function escapeRegex(value: string) {
export function escapeRegex(value: string) {
return value.replace(/[.*+?^${}()|\[\]\\]/g, '\\$&');
}