class Browser::Base

def instagram?(expected_version = nil)

Detect if browser is Instagram.
def instagram?(expected_version = nil)
  instance_of?(Instagram) &&
    detect_version?(full_version, expected_version)
end