We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6ad0bc commit 7b7f96dCopy full SHA for 7b7f96d
utilities.js
@@ -2148,12 +2148,12 @@ var Utilities = {
2148
* @param {String} text
2149
* @return {String}
2150
*/
2151
- normalize: function (text) {
+ asciify: function (text) {
2152
let re = Zotero.Utilities.XRegExp('[^\\pL0-9]', 'g');
2153
text = Zotero.Utilities.XRegExp.replace(text, re, '');
2154
text = text.normalize('NFKD');
2155
2156
- return text.toLowerCase();
+ return text;
2157
},
2158
}
2159
0 commit comments