astro-ghostcms/.pnpm-store/v3/files/9c/9c214c1e94189ac59ff34c56c59...

12 lines
226 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
module.exports = function (str) {
if (typeof str !== 'string') {
throw new TypeError('Expected a string');
}
return str.replace(matchOperatorsRe, '\\$&');
};