arraysort

Array sorting utility.

Usage no npm install needed!

<script type="module">
  import arraysort from 'https://cdn.skypack.dev/arraysort';
</script>

README

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