UNPKG

@kubb/core

Version:

Core functionality for Kubb's plugin-based code generation system, providing the foundation for transforming OpenAPI specifications.

10 lines (9 loc) 179 B
export function nameSorter<T extends { name: string }>(a: T, b: T): 0 | 1 | -1 { if (a.name < b.name) { return -1 } if (a.name > b.name) { return 1 } return 0 }