2.0.0 • Published 8 years ago

arraysort v2.0.0

Weekly downloads
477
License
MIT
Repository
github
Last release
8 years ago

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