Sha256: 7943605692d4124ea95e025b9de0686a7acd130b0e52a1fc3a07893109c0d270

Contents?: true

Size: 366 Bytes

Versions: 1

Compression:

Stored size: 366 Bytes

Contents

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

class TwitterCldr.SymbolTable
  # This is really just a thin layer on top of Hash.
  # Nice to have it abstracted in case we have to add custom behavior.

  constructor : (@symbols = {}) ->

  fetch : (symbol) ->
    @symbols[symbol]

  add : (symbol, value) ->
    @symbols[symbol] = value

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
twitter_cldr_js-2.4.0 lib/twitter_cldr/js/mustache/parsers/symbol_table.coffee