mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-27 19:51:37 +00:00
5 lines
134 B
JavaScript
5 lines
134 B
JavaScript
|
|
function escapeString(string) {
|
||
|
|
return string.replace(/[.*"+?^${}()|[\]\\]/g, '\\$&');
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports.escapeString = escapeString
|