1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-07 16:32:39 +02:00
TableFilter/src-es6/sort.js

15 lines
231 B
JavaScript
Raw Normal View History

2015-02-01 09:26:48 +01:00
/**
* Sort helpers
*/
import {Str} from './string';
2015-02-01 09:26:48 +01:00
var Sort = {
ignoreCase(a, b){
var x = Str.lower(a);
var y = Str.lower(b);
return ((x < y) ? -1 : ((x > y) ? 1 : 0));
}
};
exports.Sort = Sort;