Sha256: 14b549d6c6ca136c43154ca64fb129742e6cfff69a228cdcc76537a9a24ceb4a
Contents?: true
Size: 536 Bytes
Versions: 20
Compression:
Stored size: 536 Bytes
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 module TwitterCldr module Normalization # Implements normalization of a Unicode string to Normalization Form C (NFC). # This normalization includes canonical decomposition followed by canonical composition. # class NFC < NFKC class << self def normalize_code_points(code_points) compose(TwitterCldr::Normalization::NFD.normalize_code_points(code_points)) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems