react-native-get-pixel_edit/node_modules/@hapi/hoek/lib/escapeRegex.js
2025-07-09 11:41:52 +09:00

12 lines
198 B
JavaScript

'use strict';
const internals = {};
module.exports = function (string) {
// Escape ^$.*+-?=!:|\/()[]{},
return string.replace(/[\^\$\.\*\+\-\?\=\!\:\|\\\/\(\)\[\]\{\}\,]/g, '\\$&');
};