mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
12 lines
198 B
JavaScript
Executable File
12 lines
198 B
JavaScript
Executable File
'use strict';
|
|
|
|
const internals = {};
|
|
|
|
|
|
module.exports = function (string) {
|
|
|
|
// Escape ^$.*+-?=!:|\/()[]{},
|
|
|
|
return string.replace(/[\^\$\.\*\+\-\?\=\!\:\|\\\/\(\)\[\]\{\}\,]/g, '\\$&');
|
|
};
|