peach a19a732be8 commit message | před 2 roky | |
---|---|---|
.. | ||
lib | před 2 roky | |
LICENSE | před 2 roky | |
README.md | před 2 roky | |
package.json | před 2 roky |
Alphanumeric sorting algorithm
With npm do:
npm i alphanum-sort -S
var sort = require('alphanum-sort');
var result = sort(['item20', 'item19', 'item1', 'item10', 'item2']);
// ['item1', 'item2', 'item10', 'item19', 'item20']
Type: Boolean
Default: false
Compares items case insensitively
Type: Boolean
Default: false
Allows +
and -
characters before numbers
MIT © Bogdan Chadkin