Sha256: cc42be3dfe55cfabc8317b55f1d4031109bd68c4668cf219a9e44f3acbe6549c

Contents?: true

Size: 564 Bytes

Versions: 5

Compression:

Stored size: 564 Bytes

Contents

# Copyright 2012 Twitter, Inc
# http://www.apache.org/licenses/LICENSE-2.0

class TwitterCldr.CodePoints

  @to_char : (code_point) ->
    TwitterCldr.Utilities.pack_array([code_point])

  @from_char : (char) ->
    TwitterCldr.Utilities.unpack_string(char[0])[0]

  @from_chars : (chars) ->
    (@from_char(char) for char in chars)

  @to_chars : (code_points) ->
    (@to_char(code_point) for code_point in code_points)

  @from_string : (str) ->
    TwitterCldr.Utilities.unpack_string(str)

  @to_string : (code_points) ->
    @to_chars(code_points).join("")

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
twitter_cldr_js-3.3.0 lib/twitter_cldr/js/mustache/implementation/utils/code_points.coffee
twitter_cldr_js-3.2.0 lib/twitter_cldr/js/mustache/implementation/utils/code_points.coffee
twitter_cldr_js-3.1.1 lib/twitter_cldr/js/mustache/implementation/utils/code_points.coffee
twitter_cldr_js-3.1.0 lib/twitter_cldr/js/mustache/implementation/utils/code_points.coffee
twitter_cldr_js-2.4.0 lib/twitter_cldr/js/mustache/utils/code_points.coffee