Method: Array#unwrap

Defined in:
lib/commonmeta/array.rb

#unwrapObject



6
7
8
9
10
11
12
# File 'lib/commonmeta/array.rb', line 6

def unwrap
  case length
  when 0 then nil
  when 1 then first
  else self
  end
end