Class: String
Instance Method Summary collapse
Instance Method Details
#commify ⇒ Object
106 107 108 109 |
# File 'lib/mharris_ext/enumerable.rb', line 106 def commify return self if length <= 3 self[0...-3].commify + "," + self[-3..-1] end |