UNPKG

hsd

Version:
25 lines (19 loc) 377 B
/*! * nfkd.js - unicode normalization for hsd * Copyright (c) 2017-2018, Christopher Jeffrey (MIT License). * https://github.com/handshake-org/hsd */ '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;