Skip to content

Normalize to NFD a string using ES6 String.Prototype.Normalize

License

Notifications You must be signed in to change notification settings

LasaleFamine/string-normalize-es6

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

string-normalize-es6 Build Status

Normalize string using ES6 String.Prototype.Normalize

Install

$ yarn add string-normalize-es6

Usage

const stringNormalize = require('string-normalize-es6');

stringNormalize('Crème Brulée');
//=> 'Creme Brulee'

stringNormalize(123);
//=> null

API

stringNormalize(input)

input

Type: string

String you want to normalize to NFD.

Contribute

The module is based on this answer on Stackoverflow. I'm not completely sure the this is the correct implementation and maybe we can also specify the normalization type as argument. PR welcome! 🚀

Test

$ yarn test

License

MIT © LasaleFamine