Skip to content
Sorter functions for ClayDB list
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
ci
doc
example
lib
test
.LICENSE.bud
.README.md.bud
.gitignore
.npmignore
.travis.yml
LICENSE
README.md
package-lock.json
package.json

README.md

clay-list-sorter

Build Status npm Version JS Standard

Sorter functions for ClayDB list

Installation

$ npm install clay-list-sorter --save

Usage

'use strict'

const { sortArray } = require('clay-list-sorter')

{
  let source = [ { name: 'foo', index: 2 }, { name: 'bar', index: 1 } ]
  let sort = 'index'

  let sorted = sortArray(source, sort)
  console.log(sorted) // -> [ { name: 'bar', index: 1 }, { name: 'foo', index: 2 } ]
}

Functions

Available functions

Signature Description
sortArray(array, conditions) -> Object[] Sort array with condition

License

This software is released under the Apache-2.0 License.

Links

You can’t perform that action at this time.