muryshev's picture
init
79278ec
raw
history blame contribute delete
109 Bytes
export const escapeRegExp = (string: string) => {
return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
};