Newer
Older
vue-indexer / node_modules / escape-string-regexp / index.js
@eugene-sukhodolskiy eugene-sukhodolskiy on 24 Sep 226 bytes v1.0
'use strict';

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

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

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