class Numeric

def kilobytes

2.kilobytes # => 2048

Returns the number of bytes equivalent to the kilobytes provided.
def kilobytes
  self * KILOBYTE
end