serverless/lib/utils/deep-sort-object-by-key.js
2024-04-14 17:25:27 -07:00

20 lines
423 B
JavaScript

import _ from 'lodash';
const deepSortObjectByKey = (obj) => {
if (Array.isArray(obj)) {
return obj.map(deepSortObjectByKey);
}
if (_.isPlainObject(obj)) {
return Object.fromEntries(
Object.entries(obj)
.sort(([key], [otherKey]) => key.localeCompare(otherKey))
.map(([key, value]) => [key, deepSortObjectByKey(value)])
);
}
return obj;
};
export default deepSortObjectByKey;