Detalhes do pacote

sort-order

cameronhunter296.8kMIT1.1.2

Combine a series of sort functions to create complex sort orders

sort, ordering, comparator

readme (leia-me)

sort-order

npm package npm downloads main branch status

Combine a series of sort functions to create complex sort orders.

Install

npm install --save sort-order

Example

Sort an array of objects by creator first, then joinTime and finally id:

import sortBy from 'sort-order';

// Items to order
const a = { creator: true, joinTime: 0, id: 987 };
const b = { creator: false, joinTime: 1, id: 123 };
const c = { creator: false, joinTime: 1, id: 456 };
const d = { creator: false, joinTime: 2, id: 789 };

// Individual sort functions
const creator = (a, b) => (a.creator && -1) || (b.creator && 1) || 0;
const field = (field) => (a, b) => a[field] - b[field];

// Combined sort function
const ordering = sortBy(creator, field('joinTime'), field('id'));

// Sort!
[d, c, b, a].sort(ordering); // [a, b, c, d]

changelog (log de mudanças)

sort-order

1.1.2

Patch Changes

  • 01241aa: Add a downloads button to the README

1.1.1

Patch Changes

  • cc9d8b3: Forcing publish to Github projects
  • 519a697: Add keywords to package.json

1.1.0

Minor Changes

  • f3a2616: Now with type definitions