module UnicodeNormalize
def self.nfd_one(string)
def self.nfd_one(string) string = string.chars.map {|c| DECOMPOSITION_TABLE[c] || c}.join('') canonical_ordering_one(hangul_decomp_one(string)) end
def self.nfd_one(string) string = string.chars.map {|c| DECOMPOSITION_TABLE[c] || c}.join('') canonical_ordering_one(hangul_decomp_one(string)) end