Method: Textbringer::Commands#prefix_numeric_value

Defined in:
lib/textbringer/commands/misc.rb

#prefix_numeric_value(arg) ⇒ Object



173
174
175
176
177
178
179
180
181
182
183
184
# File 'lib/textbringer/commands/misc.rb', line 173

def prefix_numeric_value(arg)
  case arg
  when Integer
    arg
  when Array
    arg.first
  when :-
    -1
  else
    1
  end
end