1.0.5 • Published 10 months ago

@trandx/sortable v1.0.5

Weekly downloads
-
License
-
Repository
github
Last release
10 months ago

Sortable

Inspired from Fast-sort

Start Total Downloads Known Vulnerabilities Open Source Love MIT Licence

NPM Package

Sortable is a lightweight (311 bytes gzip), zero-dependency sorting library with TypeScript support. Its easy-to-use and flexible syntax, combined with incredible speed put than Fast-sort library. It's a top choice for developers who seek efficient, reliable, and customizable sorting solutions.

Quick examples

  import { sort } from 'sortable';

  // Sort flat arrays
  const ascSorted = sort([1,4,2]).asc(); // => [1, 2, 4]
  const descSorted = sort([1, 4, 2]).desc(); // => [4, 2, 1]

  // Sort users (array of objects) by firstName in descending order
  const sorted = sort(users).desc(u => u.firstName);

  // Sort users in ascending order by firstName and lastName
  const sorted = sort(users).asc([
    u => u.firstName,
    u => u.lastName
  ]);
  // Sort users in ascending order by firstName and lastName
  const sorted = sort(users).asc([
    "firstName",
    u => u.lastName,
    "author.lastName"
  ]);

  // Sort users ascending by firstName and descending by city
  const sorted = sort(users).by([
    { asc: u => u.created_at },
    { desc: ["city"] }
  ]);

  // Sort based on computed property
  const sorted = sort(repositories).desc(r => (r.openIssues + r.closedIssues));

  // Sort using string for object key
  // Only available for root object properties
  const sorted = sort(users).asc('firstName');

Running online code link

For running code you can check here

Fore more examples check unit tests.

NOTE: This library sort automatically date, string, number and booleen datas. it help you to give more sorting precision if you have same field value. for example if you've same username, the second precision that you give (created_at) is for have sorting differentiation.

More examples

  // Sorting values that are not sortable will return same value back
  sort(null).asc(); // => null
  sort(33).desc(); // => 33
  sort('john').by({asc:true}); // => john

  // By default fast-sort sorts null and undefined values to the
  // bottom no matter if sorting is in asc or decs order.
  // If this is not intended behaviour you can check "Should create sort instance that sorts nil value to the top in desc order" test on how to override
  const addresses = [{ city: 'Split' }, { city: undefined }, { city: 'Zagreb'}];
  sort(addresses).asc(); // => Split, Zagreb, undefined

Running

Install via package manager

npm i @trandx/sortable or pnpm i @trandx/sortable

To run benchmark on your PC follow steps from below

1) git clone https://github.com/Trandx/sortable.git 2) cd into the directory 3) pnpm install 4) pnpm start

In case you notice any irregularities in benchmark or you want to add sort library to benchmark score please open issue here

Author

alt text

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago