1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-17 13:15:21 +02:00
TableFilter/src/string.js

53 lines
1 KiB
JavaScript
Raw Normal View History

2014-11-16 01:29:07 +01:00
/**
* String utilities
*/
2015-05-30 14:23:33 +02:00
export default {
lower(text){
return text.toLowerCase();
},
upper(text){
return text.toUpperCase();
},
trim(text){
if (text.trim){
return text.trim();
}
return text.replace(/^\s*|\s*$/g, '');
},
isEmpty(text){
return this.trim(text) === '';
},
rgxEsc(text){
2015-06-13 17:00:31 +02:00
// function escape(e){
// let a = new RegExp('\\'+e, 'g');
// text = text.replace(a, '\\'+e);
// }
// let chars = ['\\','[','^','$','.','|','?','*','+','(',')'];
// cache escape + match String
// for(let e=0, len=chars.length; e<len; e++){
// escape(chars[e]);
// }
// return text;
let chars = /[-\/\\^$*+?.()|[\]{}]/g;
let escMatch = '\\$&';
return String(text).replace(chars, escMatch);
2015-05-30 14:23:33 +02:00
},
matchCase(text, mc){
if(!mc){
return this.lower(text);
}
return text;
2014-11-16 01:29:07 +01:00
}
};