UNPKG

prettier-plugin-pkg

Version:

An opinionated package.json formatter plugin for Prettier

6 lines 260 B
export function alphabetSort(a, b) { return a > b ? 1 : a < b ? -1 : 0; } export const sortObject = (a, b) => alphabetSort(a.key.value, b.key.value); export const sortStringArray = (a, b) => alphabetSort(a.value, b.value); //# sourceMappingURL=utils.js.map