diff options
author | Marvin Borner | 2018-11-07 18:02:36 +0100 |
---|---|---|
committer | Marvin Borner | 2018-11-07 18:02:36 +0100 |
commit | 824a2d9f587ca017fc71b84d835e72f54f9c87c4 (patch) | |
tree | 765267ea4686f752aad1f69930cfee5680cc494a /node_modules/locutus/php/pcre/sql_regcase.js | |
parent | fe75612e86b493a4e66c4e104e22658679cc014f (diff) |
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/pcre/sql_regcase.js')
-rw-r--r-- | node_modules/locutus/php/pcre/sql_regcase.js | 38 |
1 files changed, 38 insertions, 0 deletions
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 |