mirror of
https://github.com/koalyptus/TableFilter.git
synced 2026-03-16 15:45:45 +01:00
Switched to Babel
This commit is contained in:
parent
8252b1e859
commit
dc4df9e14c
32 changed files with 4247 additions and 6598 deletions
|
|
@ -1,50 +1,51 @@
|
|||
define(["exports"], function (exports) {
|
||||
"use strict";
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* String utilities
|
||||
*/
|
||||
/**
|
||||
* String utilities
|
||||
*/
|
||||
|
||||
var Str = {};
|
||||
var Str = {};
|
||||
|
||||
Str.lower = function (text) {
|
||||
return text.toLowerCase();
|
||||
};
|
||||
Str.lower = function (text) {
|
||||
return text.toLowerCase();
|
||||
};
|
||||
|
||||
Str.upper = function (text) {
|
||||
return text.toUpperCase();
|
||||
};
|
||||
Str.upper = function (text) {
|
||||
return text.toUpperCase();
|
||||
};
|
||||
|
||||
Str.trim = function (text) {
|
||||
if (text.trim) {
|
||||
return text.trim();
|
||||
}
|
||||
return text.replace(/^\s*|\s*$/g, "");
|
||||
};
|
||||
Str.trim = function (text) {
|
||||
if (text.trim) {
|
||||
return text.trim();
|
||||
}
|
||||
return text.replace(/^\s*|\s*$/g, "");
|
||||
};
|
||||
|
||||
Str.isEmpty = function (text) {
|
||||
return this.trim(text) === "";
|
||||
};
|
||||
Str.isEmpty = function (text) {
|
||||
return this.trim(text) === "";
|
||||
};
|
||||
|
||||
Str.rgxEsc = function (text) {
|
||||
function escape(e) {
|
||||
var a = new RegExp("\\" + e, "g");
|
||||
text = text.replace(a, "\\" + e);
|
||||
}
|
||||
Str.rgxEsc = function (text) {
|
||||
function escape(e) {
|
||||
var a = new RegExp("\\" + e, "g");
|
||||
text = text.replace(a, "\\" + e);
|
||||
}
|
||||
|
||||
var chars = ["\\", "[", "^", "$", ".", "|", "?", "*", "+", "(", ")"];
|
||||
for (var e = 0; e < chars.length; e++) {
|
||||
escape(chars[e]);
|
||||
}
|
||||
return text;
|
||||
};
|
||||
var chars = ["\\", "[", "^", "$", ".", "|", "?", "*", "+", "(", ")"];
|
||||
for (var e = 0; e < chars.length; e++) {
|
||||
escape(chars[e]);
|
||||
}
|
||||
return text;
|
||||
};
|
||||
|
||||
Str.matchCase = function (text, mc) {
|
||||
if (!mc) {
|
||||
return this.lower(text);
|
||||
}
|
||||
return text;
|
||||
};
|
||||
Str.matchCase = function (text, mc) {
|
||||
if (!mc) {
|
||||
return this.lower(text);
|
||||
}
|
||||
return text;
|
||||
};
|
||||
|
||||
exports.Str = Str;
|
||||
});
|
||||
exports.Str = Str;
|
||||
});
|
||||
//# sourceMappingURL=string.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue