2017-06-08 13:14:53 +02:00
|
|
|
"use strict";
|
2017-05-10 11:04:06 +02:00
|
|
|
|
|
|
|
const sortCollectionBy = (collection, key) => {
|
|
|
|
collection.sort((a, b) => {
|
|
|
|
a = a[key].toLowerCase();
|
|
|
|
b = b[key].toLowerCase();
|
|
|
|
if (a < b) return -1;
|
|
|
|
if (a > b) return 1;
|
|
|
|
return 0;
|
|
|
|
});
|
|
|
|
return collection;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.sortCollection = sortCollectionBy;
|