natural-sort icon indicating copy to clipboard operation
natural-sort copied to clipboard

Sorting incorrect when there is a space

Open 0xadri opened this issue 9 years ago • 8 comments

var stringAlphanumericalOne = [' ','1','a']; var stringAlphanumericalTwo = ['img ','img1','imga', 'imgz']; var stringAlphanumericalThree = ['img 99','img199','imga99', 'imgz99'];

console.log( stringAlphanumericalOne.sort(naturalSort) ); console.log( stringAlphanumericalTwo.sort(naturalSort) ); /* in the call below it fails! order should be ["img 99", "img199", "imga99", "imgz99"] */ console.log( stringAlphanumericalThree.sort(naturalSort) );

see live on http://jsbin.com/cipimosedoqe/1/edit?js,console

0xadri avatar Sep 26 '14 14:09 0xadri