UNPKG

stuffs

Version:

Some useful stuffs packed to here.

11 lines (10 loc) 208 B
/** * @param {string} str * @returns {string} */ function escapeRegex(str) { return str .replace(/[|\\{}()[\]^$+*?.]/g, '\\$&') .replace(/-/g, '\\x2d'); } module.exports = escapeRegex;