UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

8 lines (7 loc) 278 B
function quotemeta(str) { // From: http://phpjs.org/functions // + original by: Paulo Freitas // * example 1: quotemeta(". + * ? ^ ( $ )"); // * returns 1: '\\. \\+ \\* \\? \\^ \\( \\$ \\)' return (str + '').replace(/([\.\\\+\*\?\[\^\]\$\(\)])/g, '\\$1'); }