Flowdock
method

expand_ch_hash

Importance_0
v1_8_6_287 - Show latest stable - 0 notes - Class: String
expand_ch_hash(from, to) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/jcode.rb, line 118
  def expand_ch_hash from, to
    h = {}
    afrom = _expand_ch(from)
    ato = _expand_ch(to)
    afrom.each_with_index do |x,i| h[x] = ato[i] || ato[-1] end
    h
  end
Register or log in to add new notes.