mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-07 12:28:57 -05:00
12 lines
198 B
JavaScript
12 lines
198 B
JavaScript
'use strict';
|
|
|
|
const internals = {};
|
|
|
|
|
|
module.exports = function (string) {
|
|
|
|
// Escape ^$.*+-?=!:|\/()[]{},
|
|
|
|
return string.replace(/[\^\$\.\*\+\-\?\=\!\:\|\\\/\(\)\[\]\{\}\,]/g, '\\$&');
|
|
};
|