Skip to content

DanBUK/node-stringprep

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-stringprep

Flattr this!

Purpose

Exposes predefined Unicode normalization functions that are required by many protocols. This is just a binding to ICU, which is said to be fast.

Installation

apt-get install libicu-dev  # Debian
emerge icu                  # Gentoo
port install icu +devel     # OSX using macports

npm install node-stringprep

Usage

var StringPrep = require('node-stringprep').StringPrep;
var prep = new StringPrep('nameprep');
prep.prepare('Äffchen')  // => 'äffchen'

For a list of supported profiles, see node-stringprep.cc

About

ICU StringPrep profiles for NodeJS

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors