mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-12 20:04:57 +02: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, '\\$&');
|
|
};
|