Newer
Older
alert / js / node_modules / escape-string-regexp / index.js
@Réz István Réz István on 18 Nov 2021 226 bytes first commit
'use strict';

var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;

module.exports = function (str) {
	if (typeof str !== 'string') {
		throw new TypeError('Expected a string');
	}

	return str.replace(matchOperatorsRe, '\\$&');
};