mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 08:46:15 -04:00
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
![]() |
export { byOrder };
|
||
|
|
||
|
function byOrder({ order }: { order: 'asc' | 'desc' | null | undefined }) {
|
||
|
return (a: string, b: string) => {
|
||
|
return order === 'asc' ? a.localeCompare(b) : b.localeCompare(a);
|
||
|
};
|
||
|
}
|