hd: move nfkd to hd directory.

This commit is contained in:
Christopher Jeffrey 2017-10-29 08:20:38 -07:00
parent 9c81a00236
commit 79260891e4
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD
4 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ const BufferReader = require('../utils/reader');
const encoding = require('../utils/encoding');
const wordlist = require('./wordlist');
const common = require('./common');
const nfkd = require('../utils/nfkd');
const nfkd = require('./nfkd');
/*
* Constants

View File

@ -6,7 +6,7 @@
'use strict';
const unorm = require('../../vendor/unorm');
const unorm = require('./unorm');
function nfkd(str) {
if (str.normalize)