diff options
Diffstat (limited to 'node_modules/locutus/php/pcre')
-rw-r--r-- | node_modules/locutus/php/pcre/index.js | 5 | ||||
-rw-r--r-- | node_modules/locutus/php/pcre/index.js.map | 1 | ||||
-rw-r--r-- | node_modules/locutus/php/pcre/preg_quote.js | 20 | ||||
-rw-r--r-- | node_modules/locutus/php/pcre/preg_quote.js.map | 1 | ||||
-rw-r--r-- | node_modules/locutus/php/pcre/sql_regcase.js | 38 | ||||
-rw-r--r-- | node_modules/locutus/php/pcre/sql_regcase.js.map | 1 |
6 files changed, 66 insertions, 0 deletions
diff --git a/node_modules/locutus/php/pcre/index.js b/node_modules/locutus/php/pcre/index.js new file mode 100644 index 0000000..dbadf58 --- /dev/null +++ b/node_modules/locutus/php/pcre/index.js @@ -0,0 +1,5 @@ +'use strict'; + +module.exports['preg_quote'] = require('./preg_quote'); +module.exports['sql_regcase'] = require('./sql_regcase'); +//# sourceMappingURL=index.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/pcre/index.js.map b/node_modules/locutus/php/pcre/index.js.map new file mode 100644 index 0000000..2b469db --- /dev/null +++ b/node_modules/locutus/php/pcre/index.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/pcre/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,YAAf,IAA+BC,QAAQ,cAAR,CAA/B;AACAF,OAAOC,OAAP,CAAe,aAAf,IAAgCC,QAAQ,eAAR,CAAhC","file":"index.js","sourcesContent":["module.exports['preg_quote'] = require('./preg_quote')\nmodule.exports['sql_regcase'] = require('./sql_regcase')\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/pcre/preg_quote.js b/node_modules/locutus/php/pcre/preg_quote.js new file mode 100644 index 0000000..0dcfd71 --- /dev/null +++ b/node_modules/locutus/php/pcre/preg_quote.js @@ -0,0 +1,20 @@ +'use strict'; + +module.exports = function preg_quote(str, delimiter) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/preg_quote/ + // original by: booeyOH + // improved by: Ates Goral (http://magnetiq.com) + // improved by: Kevin van Zonneveld (http://kvz.io) + // improved by: Brett Zamir (http://brett-zamir.me) + // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: preg_quote("$40") + // returns 1: '\\$40' + // example 2: preg_quote("*RRRING* Hello?") + // returns 2: '\\*RRRING\\* Hello\\?' + // example 3: preg_quote("\\.+*?[^]$(){}=!<>|:") + // returns 3: '\\\\\\.\\+\\*\\?\\[\\^\\]\\$\\(\\)\\{\\}\\=\\!\\<\\>\\|\\:' + + return (str + '').replace(new RegExp('[.\\\\+*?\\[\\^\\]$(){}=!<>|:\\' + (delimiter || '') + '-]', 'g'), '\\$&'); +}; +//# sourceMappingURL=preg_quote.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/pcre/preg_quote.js.map b/node_modules/locutus/php/pcre/preg_quote.js.map new file mode 100644 index 0000000..890ea3f --- /dev/null +++ b/node_modules/locutus/php/pcre/preg_quote.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/pcre/preg_quote.js"],"names":["module","exports","preg_quote","str","delimiter","replace","RegExp"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,UAAT,CAAqBC,GAArB,EAA0BC,SAA1B,EAAqC;AAAE;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAO,CAACD,MAAM,EAAP,EACJE,OADI,CACI,IAAIC,MAAJ,CAAW,qCAAqCF,aAAa,EAAlD,IAAwD,IAAnE,EAAyE,GAAzE,CADJ,EACmF,MADnF,CAAP;AAED,CAhBD","file":"preg_quote.js","sourcesContent":["module.exports = function preg_quote (str, delimiter) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/preg_quote/\n // original by: booeyOH\n // improved by: Ates Goral (http://magnetiq.com)\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)\n // example 1: preg_quote(\"$40\")\n // returns 1: '\\\\$40'\n // example 2: preg_quote(\"*RRRING* Hello?\")\n // returns 2: '\\\\*RRRING\\\\* Hello\\\\?'\n // example 3: preg_quote(\"\\\\.+*?[^]$(){}=!<>|:\")\n // returns 3: '\\\\\\\\\\\\.\\\\+\\\\*\\\\?\\\\[\\\\^\\\\]\\\\$\\\\(\\\\)\\\\{\\\\}\\\\=\\\\!\\\\<\\\\>\\\\|\\\\:'\n\n return (str + '')\n .replace(new RegExp('[.\\\\\\\\+*?\\\\[\\\\^\\\\]$(){}=!<>|:\\\\' + (delimiter || '') + '-]', 'g'), '\\\\$&')\n}\n"]}
\ No newline at end of file diff --git a/node_modules/locutus/php/pcre/sql_regcase.js b/node_modules/locutus/php/pcre/sql_regcase.js new file mode 100644 index 0000000..f0dd26d --- /dev/null +++ b/node_modules/locutus/php/pcre/sql_regcase.js @@ -0,0 +1,38 @@ +'use strict'; + +module.exports = function sql_regcase(str) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/sql_regcase/ + // original by: Brett Zamir (http://brett-zamir.me) + // example 1: sql_regcase('Foo - bar.') + // returns 1: '[Ff][Oo][Oo] - [Bb][Aa][Rr].' + + var setlocale = require('../strings/setlocale'); + var i = 0; + var upper = ''; + var lower = ''; + var pos = 0; + var retStr = ''; + + setlocale('LC_ALL', 0); + + var $global = typeof window !== 'undefined' ? window : global; + $global.$locutus = $global.$locutus || {}; + var $locutus = $global.$locutus; + $locutus.php = $locutus.php || {}; + + upper = $locutus.php.locales[$locutus.php.localeCategories.LC_CTYPE].LC_CTYPE.upper; + lower = $locutus.php.locales[$locutus.php.localeCategories.LC_CTYPE].LC_CTYPE.lower; + + // @todo: Make this more readable + for (i = 0; i < str.length; i++) { + if ((pos = upper.indexOf(str.charAt(i))) !== -1 || (pos = lower.indexOf(str.charAt(i))) !== -1) { + retStr += '[' + upper.charAt(pos) + lower.charAt(pos) + ']'; + } else { + retStr += str.charAt(i); + } + } + + return retStr; +}; +//# sourceMappingURL=sql_regcase.js.map
\ No newline at end of file diff --git a/node_modules/locutus/php/pcre/sql_regcase.js.map b/node_modules/locutus/php/pcre/sql_regcase.js.map new file mode 100644 index 0000000..bd74d2d --- /dev/null +++ b/node_modules/locutus/php/pcre/sql_regcase.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/php/pcre/sql_regcase.js"],"names":["module","exports","sql_regcase","str","setlocale","require","i","upper","lower","pos","retStr","$global","window","global","$locutus","php","locales","localeCategories","LC_CTYPE","length","indexOf","charAt"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,WAAT,CAAsBC,GAAtB,EAA2B;AAAE;AAC5C;AACA;AACA;AACA;;AAEA,MAAIC,YAAYC,QAAQ,sBAAR,CAAhB;AACA,MAAIC,IAAI,CAAR;AACA,MAAIC,QAAQ,EAAZ;AACA,MAAIC,QAAQ,EAAZ;AACA,MAAIC,MAAM,CAAV;AACA,MAAIC,SAAS,EAAb;;AAEAN,YAAU,QAAV,EAAoB,CAApB;;AAEA,MAAIO,UAAW,OAAOC,MAAP,KAAkB,WAAlB,GAAgCA,MAAhC,GAAyCC,MAAxD;AACAF,UAAQG,QAAR,GAAmBH,QAAQG,QAAR,IAAoB,EAAvC;AACA,MAAIA,WAAWH,QAAQG,QAAvB;AACAA,WAASC,GAAT,GAAeD,SAASC,GAAT,IAAgB,EAA/B;;AAEAR,UAAQO,SAASC,GAAT,CAAaC,OAAb,CAAqBF,SAASC,GAAT,CAAaE,gBAAb,CAA8BC,QAAnD,EAA6DA,QAA7D,CAAsEX,KAA9E;AACAC,UAAQM,SAASC,GAAT,CAAaC,OAAb,CAAqBF,SAASC,GAAT,CAAaE,gBAAb,CAA8BC,QAAnD,EAA6DA,QAA7D,CAAsEV,KAA9E;;AAEA;AACA,OAAKF,IAAI,CAAT,EAAYA,IAAIH,IAAIgB,MAApB,EAA4Bb,GAA5B,EAAiC;AAC/B,QAAK,CAACG,MAAMF,MAAMa,OAAN,CAAcjB,IAAIkB,MAAJ,CAAWf,CAAX,CAAd,CAAP,MAAyC,CAAC,CAA3C,IACD,CAACG,MAAMD,MAAMY,OAAN,CAAcjB,IAAIkB,MAAJ,CAAWf,CAAX,CAAd,CAAP,MAAyC,CAAC,CAD7C,EACiD;AAC/CI,gBAAU,MAAMH,MAAMc,MAAN,CAAaZ,GAAb,CAAN,GAA0BD,MAAMa,MAAN,CAAaZ,GAAb,CAA1B,GAA8C,GAAxD;AACD,KAHD,MAGO;AACLC,gBAAUP,IAAIkB,MAAJ,CAAWf,CAAX,CAAV;AACD;AACF;;AAED,SAAOI,MAAP;AACD,CAlCD","file":"sql_regcase.js","sourcesContent":["module.exports = function sql_regcase (str) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/sql_regcase/\n // original by: Brett Zamir (http://brett-zamir.me)\n // example 1: sql_regcase('Foo - bar.')\n // returns 1: '[Ff][Oo][Oo] - [Bb][Aa][Rr].'\n\n var setlocale = require('../strings/setlocale')\n var i = 0\n var upper = ''\n var lower = ''\n var pos = 0\n var retStr = ''\n\n setlocale('LC_ALL', 0)\n\n var $global = (typeof window !== 'undefined' ? window : global)\n $global.$locutus = $global.$locutus || {}\n var $locutus = $global.$locutus\n $locutus.php = $locutus.php || {}\n\n upper = $locutus.php.locales[$locutus.php.localeCategories.LC_CTYPE].LC_CTYPE.upper\n lower = $locutus.php.locales[$locutus.php.localeCategories.LC_CTYPE].LC_CTYPE.lower\n\n // @todo: Make this more readable\n for (i = 0; i < str.length; i++) {\n if (((pos = upper.indexOf(str.charAt(i))) !== -1) ||\n ((pos = lower.indexOf(str.charAt(i))) !== -1)) {\n retStr += '[' + upper.charAt(pos) + lower.charAt(pos) + ']'\n } else {\n retStr += str.charAt(i)\n }\n }\n\n return retStr\n}\n"]}
\ No newline at end of file |