Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jajbshjahavahh
GitHub Repository: jajbshjahavahh/Gojo-Satoru
Path: blob/master/node_modules/@hapi/hoek/lib/escapeRegex.js
2593 views
1
'use strict';
2
3
const internals = {};
4
5
6
module.exports = function (string) {
7
8
// Escape ^$.*+-?=!:|\/()[]{},
9
10
return string.replace(/[\^\$\.\*\+\-\?\=\!\:\|\\\/\(\)\[\]\{\}\,]/g, '\\$&');
11
};
12
13