opt-cc/api/middleware/util.js

29 lines
551 B
JavaScript
Raw Normal View History

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;
};
2017-10-20 23:42:41 +02:00
const arrayContains = (arr, user) => {
let i = 0, count = arr.length, matchFound = false;
for(; i < count; i++) {
if (arr[i] === user) {
matchFound = true;
break;
}
}
return matchFound;
};
2017-05-10 11:04:06 +02:00
exports.sortCollection = sortCollectionBy;
2017-10-20 23:42:41 +02:00
exports.arrayContains = arrayContains;