serverless/lib/utils/deep-sort-object-by-key.js
2024-05-29 11:51:04 -04:00

20 lines
418 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