class Mercury::Utils

Public Class Methods

unsplat(args) click to toggle source
# File lib/mercury/utils.rb, line 3
def self.unsplat(args)
  if args.size == 1 and args.first.is_a?(Array)
    args.first
  else
    args
  end
end