https://nodejs.org/docs/latest-v14.x/api/esm.html#esm_experimental_json_modules This was something that we did a lot of with require()
26 lines
711 B
JavaScript
26 lines
711 B
JavaScript
// External
|
|
import localeCompare from 'locale-compare';
|
|
const withLocale = localeCompare('en-US');
|
|
|
|
// Returns an object with sorted keys and sorted values.
|
|
// (This is useful for file diffing)
|
|
export function sortObject(obj) {
|
|
if (!obj) return null;
|
|
|
|
let sorted = {};
|
|
Object.keys(obj).sort(keyCompare).forEach(k => {
|
|
sorted[k] = Array.isArray(obj[k]) ? obj[k].sort(withLocale) : obj[k];
|
|
});
|
|
return sorted;
|
|
|
|
function keyCompare(a, b) {
|
|
const qid = /^Q(\d+)$/;
|
|
const aMatch = a.match(qid);
|
|
const bMatch = b.match(qid);
|
|
if (aMatch && bMatch) {
|
|
return parseInt(b[1], 10) - parseInt(a[1], 10); // sort QIDs numerically
|
|
} else {
|
|
return withLocale(a, b);
|
|
}
|
|
}
|
|
}
|