module Browser::Platform

def platform

Return the platform.
def platform
  case
  when linux?     then :linux
  when mac?       then :mac
  when windows?   then :windows
  else
    :other
  end
end