clay-list-sorter

2.0.2 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i clay-list-sorter

Weekly Downloads

14

Version

2.0.2

License

Apache-2.0

Unpacked Size

36.8 kB

Total Files

31

Last publish

Collaborators

  • okunishinishi
  • realglobe