Sha256: 0baf4cf2d16a931e75e5e5130b4339d14d5c21a7031a957551e3c26a693e65c4
Contents?: true
Size: 313 Bytes
Versions: 5
Compression:
Stored size: 313 Bytes
Contents
# frozen_string_literal: true module Browser class Platform class WindowsMobile < Base def version "0" end def name "Windows Mobile" end def id :windows_mobile end def match? ua.include?("Windows CE") end end end end
Version data entries
5 entries across 5 versions & 1 rubygems