0.1.1 • Published 7 years ago

string-normalize-es6 v0.1.1

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

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! :rocket:

Test

$ yarn test

License

MIT © LasaleFamine