sort-alphabetic

0.0.1 • Public • Published

sort-alphabetic Build Status

Sort an array alphabetically, ignoring case

Install

$ npm install --save sort-alphabetic

Usage

const sortAlphabetic = require('sort-alphabetic');
 
sortAlphabetic('unicorns');
//=> '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

Package Sidebar

Install

npm i sort-alphabetic

Weekly Downloads

2

Version

0.0.1

License

MIT

Last publish

Collaborators

  • richardlitt