UNPKG

mach

Version:
10 lines (8 loc) 216 B
"use strict"; /** * Escapes all special RegExp characters in the given string. */ function escapeRegExp(string) { return String(string).replace(/([.?*+^$[\]\\(){}-])/g, "\\$1"); } module.exports = escapeRegExp;