1.0.0 • Published 11 years ago

utf8compare v1.0.0

Weekly downloads
7
License
LGPL
Repository
github
Last release
11 years ago

utf8compare

compare 2 utf8 strings for easy sorting of different languages. currently only german is supported, but it's easy to add other languages (see dict var in source)

npm install utf8compare

   var UTF8Compare = require('utf8compare')('de');

   searchData = searchData.sort(function (a, b) {
    var r = UTF8Compare(a[1], b[1]);
    return r;
  });