UNPKG
@alandawi/adhoc-utils
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
Some tools to improve the teamwork
github.com/alandawi/adhoc-utils
alandawi/adhoc-utils
@alandawi/adhoc-utils
/
src
/
utils
/
escapeRegExp.js
5 lines
(4 loc)
•
132 B
JavaScript
View Raw
1
2
3
4
5
const
escapeRegExp
=
async
(
string
) => {
await
string
.
replace
(
/[.*+\-?^${}()|[\]\\]/g
,
'\\$&'
); }
module
.
exports
= escapeRegExp