1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-23 00:32:21 +02:00
TableFilter/src-es6/sort.js
2015-05-30 22:23:33 +10:00

10 lines
187 B
JavaScript

import Str from './string';
export default {
ignoreCase(a, b){
let x = Str.lower(a);
let y = Str.lower(b);
return ((x < y) ? -1 : ((x > y) ? 1 : 0));
}
};