okunishinishi / node-arraysort

Node.js module for array sorting.

Home Page:https://www.npmjs.com/package/arraysort

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

arraysort

Build Status Code Climate Code Coverage npm Version

Array sorting utility.

Installation

npm install arraysort --save

Usage

Sort Strings

arraysort.stringCompare(options) create a function which sort entries by string comparing.

"use strict";

const arraysort = require('arraysort');

// Define a sort function.
let stringAsc = arraysort.stringCompare(),
    stringDesc = arraysort.stringCompare({desc: true});

// Execute sorting.
let values = ['foo', 'bar', 'baz'];
values = values.sort(stringAsc); // -> ['foo', 'baz', 'bar']
values = values.sort(stringDesc); // -> ['bar', 'baz', 'foo']

License

This software is released under the MIT License.

Links

About

Node.js module for array sorting.

https://www.npmjs.com/package/arraysort

License:MIT License


Languages

Language:JavaScript 100.0%