sort-alphabetic
Sort an array alphabetically, ignoring case
Install
$ npm install --save sort-alphabetic
Usage
const sortAlphabetic = ; ;//=> 'unicorns & rainbows'
API
sortAlphabetic(input, [options])
input
Type: array
The array to sort
options
start
Type: int
Default: false
The character position to begin sorting at.
CLI
$ npm install --global sort-alphabetic
$ sort-alphabetic --help
Usage
$ sort-alphabetic [input]
Options
--start The character position to start alphabetizing from. [Default: false]
Examples
$ sort-alphabetic ONE one Two
[ 'ONE', 'one', 'TWO' ]
$ sort-alphabetic cONE bone aTwo --start=1
[ 'cONE', 'bone', 'aTWO' ]
License
MIT © Richard Littauer