sort-array-by

1.0.0 • Public • Published

sort-array-by

Takes an array and sorts it by the values returned from the given function.

install

$ npm install sort-array-by

example

const sortBy = require('sort-array-by')
 
sortBy(v => v.name, [
  { name: 'Andy', id: 1 },
  { name: 'Indy', id: 2 },
  { name: 'Jill', id: 3 },
  { name: 'Andy', id: 4 },
  { name: 'Jack', id: 5 }
])
/* => [
  { name: 'Andy', id: 1 },
  { name: 'Andy', id: 4 },
  { name: 'Indy', id: 2 },
  { name: 'Jack', id: 5 },
  { name: 'Jill', id: 3 }
*/

api

sortBy(getValue, array)

  • getValue(item)
    • item an item from the array
    • => value the value to compare to determine sort order
  • array the array to sort
  • => array a sorted array

/sort-array-by/

    Package Sidebar

    Install

    npm i sort-array-by

    Weekly Downloads

    3

    Version

    1.0.0

    License

    CC0-1.0

    Last publish

    Collaborators

    • m59