25 lines
377 B
JavaScript
25 lines
377 B
JavaScript
/*!
|
|
* nfkd.js - unicode normalization for bcoin
|
|
* Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).
|
|
* https://github.com/bcoin-org/bcoin
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* Normalize unicode string.
|
|
* @alias module:utils.nfkd
|
|
* @param {String} str
|
|
* @returns {String}
|
|
*/
|
|
|
|
function nfkd(str) {
|
|
return str.normalize('NFKD');
|
|
}
|
|
|
|
/*
|
|
* Expose
|
|
*/
|
|
|
|
module.exports = nfkd;
|