utf8compare

1.0.0 • Public • Published

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;
  });
 

Package Sidebar

Install

npm i utf8compare

Weekly Downloads

2

Version

1.0.0

License

LGPL

Last publish

Collaborators

  • silverbucket