0.0.2 • Published 7 years ago

sort-arr v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

sort-arr Build Status

A tiny (110B), fast and simplified array sort

Install

$ npm install --save sort-arr

Usage

const sortArr = require('sort-arr')

const arr = [
  { band: 'Lights', members: 1 },
  { band: 'Blink-182', members: 3 },
  { band: 'Jamestown Story', members: 1 }
]

sortArr(arr, 'band')
/* => [
  { band: 'Blink-182', members: 3 },
  { band: 'Jamestown Story', members: 1 },
  { band: 'Lights', members: 1 }
]
*/

API

sortArr(arr, key)

Returns an array

arr

Type: array

Array to be sorted

key

Type: string

Name of the object key

Benchmarks

// Fastest is sort-arr

sort-array
  --> 35,101 ops/sec ±4.01% (85 runs sampled) | Diff: N/A

array-sort
  --> 186,025 ops/sec ±8.78% (70 runs sampled) | Diff: 429.97% faster

sort-arr
  --> 1,014,953 ops/sec ±6.87% (76 runs sampled) | Diff: 445.60% faster

License

MIT © Bu Kinoshita

0.0.2

7 years ago

0.0.1

7 years ago