1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-08 17:02:30 +02:00
TableFilter/src/sort.js

20 lines
361 B
JavaScript
Raw Normal View History

2015-02-01 09:26:48 +01:00
define(["exports", "string"], function (exports, _string) {
"use strict";
2015-02-28 10:27:28 +01:00
/**
* Sort helpers
*/
2015-02-01 09:26:48 +01:00
2015-02-28 10:27:28 +01:00
var Str = _string.Str;
2015-02-01 09:26:48 +01:00
var Sort = {
2015-02-28 10:27:28 +01:00
ignoreCase: function ignoreCase(a, b) {
2015-02-01 09:26:48 +01:00
var x = Str.lower(a);
var y = Str.lower(b);
2015-02-28 10:27:28 +01:00
return x < y ? -1 : x > y ? 1 : 0;
2015-02-01 09:26:48 +01:00
}
};
exports.Sort = Sort;
2015-02-28 10:27:28 +01:00
});
//# sourceMappingURL=sort.js.map