├── .eslintrc.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── update-applications.js ├── update-browser-ids.js ├── update-chrome.js ├── update-indices.js ├── update-models.js ├── update-profiles.js └── update-regexes.js ├── data ├── applications-bots.js ├── applications-browsers.js ├── applications-others.js ├── browsers-chrome.js ├── build-android.js ├── id-android.js ├── indices │ ├── models-android.js │ ├── models-asha.js │ ├── models-bada.js │ ├── models-brew.js │ ├── models-feature.js │ ├── models-firefoxos.js │ ├── models-kddi.js │ ├── models-palmos.js │ ├── models-s30plus.js │ ├── models-s40.js │ ├── models-symbian.js │ ├── models-tizen.js │ ├── models-touchwiz.js │ ├── models-wm.js │ └── models-wp.js ├── manufacturer-names.js ├── models-android.js ├── models-asha.js ├── models-bada.js ├── models-blackberry.js ├── models-brew.js ├── models-feature.js ├── models-firefoxos.js ├── models-ios.js ├── models-kddi.js ├── models-palmos.js ├── models-s30plus.js ├── models-s40.js ├── models-symbian.js ├── models-tizen.js ├── models-touchwiz.js ├── models-wm.js ├── models-wp.js ├── os-cfnetwork.js ├── os-darwin.js ├── profiles.js └── regexes │ ├── applications-bots.js │ ├── applications-browsers.js │ └── applications-others.js ├── package.json ├── src ├── Analyser.js ├── Analyser │ ├── Camouflage.js │ ├── Corrections.js │ ├── Derive.js │ ├── Header.js │ ├── Header │ │ ├── Baidu.js │ │ ├── BrowserId.js │ │ ├── OperaMini.js │ │ ├── Puffin.js │ │ ├── UCBrowserNew.js │ │ ├── UCBrowserOld.js │ │ ├── Useragent.js │ │ ├── Useragent │ │ │ ├── Application.js │ │ │ ├── Bot.js │ │ │ ├── Browser.js │ │ │ ├── Device.js │ │ │ ├── Device │ │ │ │ ├── Appliance.js │ │ │ │ ├── Cars.js │ │ │ │ ├── Ereader.js │ │ │ │ ├── Gaming.js │ │ │ │ ├── Gps.js │ │ │ │ ├── Media.js │ │ │ │ ├── Mobile.js │ │ │ │ ├── Pda.js │ │ │ │ ├── Phone.js │ │ │ │ ├── Printer.js │ │ │ │ ├── Signage.js │ │ │ │ ├── Tablet.js │ │ │ │ ├── Television.js │ │ │ │ └── index.js │ │ │ ├── Engine.js │ │ │ ├── Os.js │ │ │ ├── Using.js │ │ │ └── index.js │ │ ├── Wap.js │ │ └── index.js │ └── index.js ├── Cache.js ├── Parser.js ├── constants │ ├── browserType.js │ ├── deviceSubType.js │ ├── deviceType.js │ ├── engineType.js │ ├── feature.js │ ├── flag.js │ ├── id.js │ └── index.js ├── data │ ├── Applications.js │ ├── BrowserIds.js │ ├── BuildIds.js │ ├── CFNetwork.js │ ├── Chrome.js │ ├── Darwin.js │ ├── DeviceModels.js │ ├── DeviceProfiles.js │ └── Manufacturers.js └── model │ ├── Browser.js │ ├── Device.js │ ├── Engine.js │ ├── Family.js │ ├── Main.js │ ├── Os.js │ ├── Using.js │ ├── Version.js │ └── primitive │ ├── Base.js │ └── NameVersion.js ├── test ├── data │ ├── appliance │ │ ├── amstrad.yaml │ │ ├── familyhub.yaml │ │ ├── i-opener.yaml │ │ └── weblight.yaml │ ├── bots │ │ ├── disabled.yaml │ │ ├── false-positive.yaml │ │ └── generic.yaml │ ├── camera │ │ ├── os-android.yaml │ │ └── os-tizen.yaml │ ├── car │ │ ├── tesla.yaml │ │ └── volvo.yaml │ ├── desktop │ │ ├── app-editor.yaml │ │ ├── app-mediaplayer.yaml │ │ ├── browser-arachne.yaml │ │ ├── browser-brave.yaml │ │ ├── browser-chrome.yaml │ │ ├── browser-chromium.yaml │ │ ├── browser-edge.yaml │ │ ├── browser-firefox.yaml │ │ ├── browser-flow.yaml │ │ ├── browser-icab.yaml │ │ ├── browser-ie.yaml │ │ ├── browser-konqueror.yaml │ │ ├── browser-maxthon.yaml │ │ ├── browser-midori.yaml │ │ ├── browser-mosaic.yaml │ │ ├── browser-netfront.yaml │ │ ├── browser-netscape.yaml │ │ ├── browser-omniweb.yaml │ │ ├── browser-opera.yaml │ │ ├── browser-other.yaml │ │ ├── browser-qq.yaml │ │ ├── browser-safari.yaml │ │ ├── browser-seamonkey.yaml │ │ ├── browser-text.yaml │ │ ├── browser-uc.yaml │ │ ├── engine-goanna.yaml │ │ ├── engine-servo.yaml │ │ ├── os-amigaos.yaml │ │ ├── os-aros.yaml │ │ ├── os-beos.yaml │ │ ├── os-bsd.yaml │ │ ├── os-chromeos.yaml │ │ ├── os-haiku.yaml │ │ ├── os-irix.yaml │ │ ├── os-joli.yaml │ │ ├── os-linux.yaml │ │ ├── os-morphos.yaml │ │ ├── os-os2.yaml │ │ ├── os-osx.yaml │ │ ├── os-redstar.yaml │ │ ├── os-remix.yaml │ │ ├── os-riscos.yaml │ │ ├── os-solaris.yaml │ │ ├── os-syllable.yaml │ │ ├── os-unix.yaml │ │ ├── os-windows.yaml │ │ ├── other.yaml │ │ ├── platform-electron.yaml │ │ └── platform-qt.yaml │ ├── ereader │ │ ├── amazon.yaml │ │ ├── kobo.yaml │ │ ├── nook.yaml │ │ ├── other.yaml │ │ ├── pocketbook.yaml │ │ └── sony.yaml │ ├── gaming │ │ ├── microsoft.yaml │ │ ├── nintendo.yaml │ │ ├── other.yaml │ │ ├── sega.yaml │ │ └── sony.yaml │ ├── headset │ │ ├── device-gear.yaml │ │ ├── device-glass.yaml │ │ └── device-oculus.yaml │ ├── media │ │ ├── device-archos.yaml │ │ ├── device-walkman.yaml │ │ └── device-zune.yaml │ ├── mobile │ │ ├── app-chat.yaml │ │ ├── app-download.yaml │ │ ├── app-email.yaml │ │ ├── app-media.yaml │ │ ├── app-news.yaml │ │ ├── app-other.yaml │ │ ├── app-search.yaml │ │ ├── app-shopping.yaml │ │ ├── app-social.yaml │ │ ├── browser-2345.yaml │ │ ├── browser-360.yaml │ │ ├── browser-au.yaml │ │ ├── browser-baidu.yaml │ │ ├── browser-chrome.yaml │ │ ├── browser-dolfin.yaml │ │ ├── browser-dolphin.yaml │ │ ├── browser-edge.yaml │ │ ├── browser-eui.yaml │ │ ├── browser-firefox-ios.yaml │ │ ├── browser-ibrowser.yaml │ │ ├── browser-iris.yaml │ │ ├── browser-jig.yaml │ │ ├── browser-lg.yaml │ │ ├── browser-maxthon.yaml │ │ ├── browser-mib.yaml │ │ ├── browser-minibrowser.yaml │ │ ├── browser-mme.yaml │ │ ├── browser-netfront.yaml │ │ ├── browser-ninesky.yaml │ │ ├── browser-nokiaxpress.yaml │ │ ├── browser-novarra.yaml │ │ ├── browser-obigo.yaml │ │ ├── browser-openwave.yaml │ │ ├── browser-opera.yaml │ │ ├── browser-other.yaml │ │ ├── browser-polaris.yaml │ │ ├── browser-puffin.yaml │ │ ├── browser-qq.yaml │ │ ├── browser-samsung.yaml │ │ ├── browser-skyfire.yaml │ │ ├── browser-sogou.yaml │ │ ├── browser-uc.yaml │ │ ├── browser-webview.yaml │ │ ├── carrier-docomo.yaml │ │ ├── carrier-emobile.yaml │ │ ├── carrier-kddi.yaml │ │ ├── carrier-softbank.yaml │ │ ├── carrier-willcom.yaml │ │ ├── device-kin.yaml │ │ ├── device-nokiax.yaml │ │ ├── engine-servo.yaml │ │ ├── header-requestedwith.yaml │ │ ├── header-wap.yaml │ │ ├── manufacturer-lg.yaml │ │ ├── manufacturer-microsoft.yaml │ │ ├── manufacturer-motorola.yaml │ │ ├── manufacturer-nokia-asha.yaml │ │ ├── manufacturer-nokia-series40.yaml │ │ ├── manufacturer-nokia-series60.yaml │ │ ├── manufacturer-nokia-windows.yaml │ │ ├── manufacturer-samsung-android.yaml │ │ ├── manufacturer-samsung-bada.yaml │ │ ├── manufacturer-siemens.yaml │ │ ├── manufacturer-sony.yaml │ │ ├── manufacturer-sonyericsson.yaml │ │ ├── manufacturer-xiaomi.yaml │ │ ├── os-aliyun.yaml │ │ ├── os-android.yaml │ │ ├── os-asha.yaml │ │ ├── os-bada.yaml │ │ ├── os-baiduyi.yaml │ │ ├── os-blackberry-10.yaml │ │ ├── os-blackberry.yaml │ │ ├── os-brew.yaml │ │ ├── os-cos.yaml │ │ ├── os-ezxlinux.yaml │ │ ├── os-feature.yaml │ │ ├── os-firefoxos.yaml │ │ ├── os-fireos.yaml │ │ ├── os-geos.yaml │ │ ├── os-harmony.yaml │ │ ├── os-ios.yaml │ │ ├── os-kaios.yaml │ │ ├── os-limo.yaml │ │ ├── os-maemo.yaml │ │ ├── os-meego.yaml │ │ ├── os-mre.yaml │ │ ├── os-s30.yaml │ │ ├── os-s40.yaml │ │ ├── os-s80.yaml │ │ ├── os-sailfish.yaml │ │ ├── os-spreadtrum.yaml │ │ ├── os-symbian.yaml │ │ ├── os-threadx.yaml │ │ ├── os-tizen.yaml │ │ ├── os-ubuntu.yaml │ │ ├── os-vre.yaml │ │ ├── os-webos.yaml │ │ ├── os-windowsce.yaml │ │ ├── os-windowsmobile.yaml │ │ ├── os-windowsphone.yaml │ │ ├── os-wophone.yaml │ │ ├── platform-air.yaml │ │ └── wap.yaml │ ├── other │ │ ├── camouflage.yaml │ │ ├── reported.yaml │ │ └── xmlhttprequest.yaml │ ├── pda │ │ ├── airboard.yaml │ │ ├── casio.yaml │ │ ├── generic.yaml │ │ ├── mylo.yaml │ │ ├── oasys.yaml │ │ ├── palm.yaml │ │ ├── psion.yaml │ │ └── zaurus.yaml │ ├── phone │ │ └── snom.yaml │ ├── printer │ │ ├── canon.yaml │ │ ├── hp.yaml │ │ ├── other.yaml │ │ └── taskalfa.yaml │ ├── signage │ │ └── other.yaml │ ├── tablet │ │ ├── browser-opera.yaml │ │ ├── manufacturer-samsung.yaml │ │ ├── manufacturer-webtab.yaml │ │ ├── os-android.yaml │ │ ├── os-blackberry.yaml │ │ ├── os-firefoxos.yaml │ │ ├── os-fireos.yaml │ │ ├── os-ios.yaml │ │ ├── os-leos.yaml │ │ ├── os-ubuntu.yaml │ │ └── os-webos.yaml │ ├── television │ │ ├── appletv.yaml │ │ ├── browser-espial.yaml │ │ ├── browser-machblue.yaml │ │ ├── browser-nx.yaml │ │ ├── browser-opera.yaml │ │ ├── firetv.yaml │ │ ├── google.yaml │ │ ├── hitachi.yaml │ │ ├── kreatv.yaml │ │ ├── lg.yaml │ │ ├── mitsubishi.yaml │ │ ├── nvidia.yaml │ │ ├── opentv.yaml │ │ ├── other.yaml │ │ ├── panasonic.yaml │ │ ├── philips.yaml │ │ ├── pioneer.yaml │ │ ├── roku.yaml │ │ ├── samsung.yaml │ │ ├── sanyo.yaml │ │ ├── sharp.yaml │ │ ├── sony.yaml │ │ └── toshiba.yaml │ └── watch │ │ ├── os-android-wear.yaml │ │ ├── os-android.yaml │ │ └── os-tizen.yaml ├── model │ ├── BrowserTest.js │ ├── DeviceTest.js │ ├── EngineTest.js │ ├── FamilyTest.js │ ├── MainTest.js │ ├── OsTest.js │ ├── UsingTest.js │ ├── VersionTest.js │ └── primitive │ │ ├── BaseTest.js │ │ └── NameVersionTest.js └── unit │ ├── AnalyserTest.js │ ├── CacheTest.js │ ├── MassiveTest.js │ └── ParserTest.js └── which-browser.d.ts /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/README.md -------------------------------------------------------------------------------- /bin/update-applications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/bin/update-applications.js -------------------------------------------------------------------------------- /bin/update-browser-ids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/bin/update-browser-ids.js -------------------------------------------------------------------------------- /bin/update-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/bin/update-chrome.js -------------------------------------------------------------------------------- /bin/update-indices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/bin/update-indices.js -------------------------------------------------------------------------------- /bin/update-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/bin/update-models.js -------------------------------------------------------------------------------- /bin/update-profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/bin/update-profiles.js -------------------------------------------------------------------------------- /bin/update-regexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/bin/update-regexes.js -------------------------------------------------------------------------------- /data/applications-bots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/applications-bots.js -------------------------------------------------------------------------------- /data/applications-browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/applications-browsers.js -------------------------------------------------------------------------------- /data/applications-others.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/applications-others.js -------------------------------------------------------------------------------- /data/browsers-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/browsers-chrome.js -------------------------------------------------------------------------------- /data/build-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/build-android.js -------------------------------------------------------------------------------- /data/id-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/id-android.js -------------------------------------------------------------------------------- /data/indices/models-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-android.js -------------------------------------------------------------------------------- /data/indices/models-asha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-asha.js -------------------------------------------------------------------------------- /data/indices/models-bada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-bada.js -------------------------------------------------------------------------------- /data/indices/models-brew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-brew.js -------------------------------------------------------------------------------- /data/indices/models-feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-feature.js -------------------------------------------------------------------------------- /data/indices/models-firefoxos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-firefoxos.js -------------------------------------------------------------------------------- /data/indices/models-kddi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-kddi.js -------------------------------------------------------------------------------- /data/indices/models-palmos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-palmos.js -------------------------------------------------------------------------------- /data/indices/models-s30plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-s30plus.js -------------------------------------------------------------------------------- /data/indices/models-s40.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-s40.js -------------------------------------------------------------------------------- /data/indices/models-symbian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-symbian.js -------------------------------------------------------------------------------- /data/indices/models-tizen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-tizen.js -------------------------------------------------------------------------------- /data/indices/models-touchwiz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-touchwiz.js -------------------------------------------------------------------------------- /data/indices/models-wm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-wm.js -------------------------------------------------------------------------------- /data/indices/models-wp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/indices/models-wp.js -------------------------------------------------------------------------------- /data/manufacturer-names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/manufacturer-names.js -------------------------------------------------------------------------------- /data/models-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-android.js -------------------------------------------------------------------------------- /data/models-asha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-asha.js -------------------------------------------------------------------------------- /data/models-bada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-bada.js -------------------------------------------------------------------------------- /data/models-blackberry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-blackberry.js -------------------------------------------------------------------------------- /data/models-brew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-brew.js -------------------------------------------------------------------------------- /data/models-feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-feature.js -------------------------------------------------------------------------------- /data/models-firefoxos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-firefoxos.js -------------------------------------------------------------------------------- /data/models-ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-ios.js -------------------------------------------------------------------------------- /data/models-kddi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-kddi.js -------------------------------------------------------------------------------- /data/models-palmos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-palmos.js -------------------------------------------------------------------------------- /data/models-s30plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-s30plus.js -------------------------------------------------------------------------------- /data/models-s40.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-s40.js -------------------------------------------------------------------------------- /data/models-symbian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-symbian.js -------------------------------------------------------------------------------- /data/models-tizen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-tizen.js -------------------------------------------------------------------------------- /data/models-touchwiz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-touchwiz.js -------------------------------------------------------------------------------- /data/models-wm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-wm.js -------------------------------------------------------------------------------- /data/models-wp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/models-wp.js -------------------------------------------------------------------------------- /data/os-cfnetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/os-cfnetwork.js -------------------------------------------------------------------------------- /data/os-darwin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/os-darwin.js -------------------------------------------------------------------------------- /data/profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/profiles.js -------------------------------------------------------------------------------- /data/regexes/applications-bots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/regexes/applications-bots.js -------------------------------------------------------------------------------- /data/regexes/applications-browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/regexes/applications-browsers.js -------------------------------------------------------------------------------- /data/regexes/applications-others.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/data/regexes/applications-others.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/package.json -------------------------------------------------------------------------------- /src/Analyser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser.js -------------------------------------------------------------------------------- /src/Analyser/Camouflage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Camouflage.js -------------------------------------------------------------------------------- /src/Analyser/Corrections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Corrections.js -------------------------------------------------------------------------------- /src/Analyser/Derive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Derive.js -------------------------------------------------------------------------------- /src/Analyser/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header.js -------------------------------------------------------------------------------- /src/Analyser/Header/Baidu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Baidu.js -------------------------------------------------------------------------------- /src/Analyser/Header/BrowserId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/BrowserId.js -------------------------------------------------------------------------------- /src/Analyser/Header/OperaMini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/OperaMini.js -------------------------------------------------------------------------------- /src/Analyser/Header/Puffin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Puffin.js -------------------------------------------------------------------------------- /src/Analyser/Header/UCBrowserNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/UCBrowserNew.js -------------------------------------------------------------------------------- /src/Analyser/Header/UCBrowserOld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/UCBrowserOld.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Application.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Bot.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Browser.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Appliance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Appliance.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Cars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Cars.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Ereader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Ereader.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Gaming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Gaming.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Gps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Gps.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Media.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Mobile.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Pda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Pda.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Phone.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Printer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Printer.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Signage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Signage.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Tablet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Tablet.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/Television.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/Television.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Device/index.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Engine.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Os.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/Using.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/Using.js -------------------------------------------------------------------------------- /src/Analyser/Header/Useragent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Useragent/index.js -------------------------------------------------------------------------------- /src/Analyser/Header/Wap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/Wap.js -------------------------------------------------------------------------------- /src/Analyser/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/Header/index.js -------------------------------------------------------------------------------- /src/Analyser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Analyser/index.js -------------------------------------------------------------------------------- /src/Cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Cache.js -------------------------------------------------------------------------------- /src/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/Parser.js -------------------------------------------------------------------------------- /src/constants/browserType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/constants/browserType.js -------------------------------------------------------------------------------- /src/constants/deviceSubType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/constants/deviceSubType.js -------------------------------------------------------------------------------- /src/constants/deviceType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/constants/deviceType.js -------------------------------------------------------------------------------- /src/constants/engineType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/constants/engineType.js -------------------------------------------------------------------------------- /src/constants/feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/constants/feature.js -------------------------------------------------------------------------------- /src/constants/flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/constants/flag.js -------------------------------------------------------------------------------- /src/constants/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/constants/id.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/data/Applications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/data/Applications.js -------------------------------------------------------------------------------- /src/data/BrowserIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/data/BrowserIds.js -------------------------------------------------------------------------------- /src/data/BuildIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/data/BuildIds.js -------------------------------------------------------------------------------- /src/data/CFNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/data/CFNetwork.js -------------------------------------------------------------------------------- /src/data/Chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/data/Chrome.js -------------------------------------------------------------------------------- /src/data/Darwin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/data/Darwin.js -------------------------------------------------------------------------------- /src/data/DeviceModels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/data/DeviceModels.js -------------------------------------------------------------------------------- /src/data/DeviceProfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/data/DeviceProfiles.js -------------------------------------------------------------------------------- /src/data/Manufacturers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/data/Manufacturers.js -------------------------------------------------------------------------------- /src/model/Browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/model/Browser.js -------------------------------------------------------------------------------- /src/model/Device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/model/Device.js -------------------------------------------------------------------------------- /src/model/Engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/model/Engine.js -------------------------------------------------------------------------------- /src/model/Family.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/model/Family.js -------------------------------------------------------------------------------- /src/model/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/model/Main.js -------------------------------------------------------------------------------- /src/model/Os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/model/Os.js -------------------------------------------------------------------------------- /src/model/Using.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/model/Using.js -------------------------------------------------------------------------------- /src/model/Version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/model/Version.js -------------------------------------------------------------------------------- /src/model/primitive/Base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/model/primitive/Base.js -------------------------------------------------------------------------------- /src/model/primitive/NameVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/src/model/primitive/NameVersion.js -------------------------------------------------------------------------------- /test/data/appliance/amstrad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/appliance/amstrad.yaml -------------------------------------------------------------------------------- /test/data/appliance/familyhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/appliance/familyhub.yaml -------------------------------------------------------------------------------- /test/data/appliance/i-opener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/appliance/i-opener.yaml -------------------------------------------------------------------------------- /test/data/appliance/weblight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/appliance/weblight.yaml -------------------------------------------------------------------------------- /test/data/bots/disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/bots/disabled.yaml -------------------------------------------------------------------------------- /test/data/bots/false-positive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/bots/false-positive.yaml -------------------------------------------------------------------------------- /test/data/bots/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/bots/generic.yaml -------------------------------------------------------------------------------- /test/data/camera/os-android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/camera/os-android.yaml -------------------------------------------------------------------------------- /test/data/camera/os-tizen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/camera/os-tizen.yaml -------------------------------------------------------------------------------- /test/data/car/tesla.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/car/tesla.yaml -------------------------------------------------------------------------------- /test/data/car/volvo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/car/volvo.yaml -------------------------------------------------------------------------------- /test/data/desktop/app-editor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/app-editor.yaml -------------------------------------------------------------------------------- /test/data/desktop/app-mediaplayer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/app-mediaplayer.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-arachne.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-arachne.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-brave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-brave.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-chrome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-chrome.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-chromium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-chromium.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-edge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-edge.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-firefox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-firefox.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-flow.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-icab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-icab.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-ie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-ie.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-konqueror.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-konqueror.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-maxthon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-maxthon.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-midori.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-midori.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-mosaic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-mosaic.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-netfront.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-netfront.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-netscape.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-netscape.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-omniweb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-omniweb.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-opera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-opera.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-other.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-qq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-qq.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-safari.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-safari.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-seamonkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-seamonkey.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-text.yaml -------------------------------------------------------------------------------- /test/data/desktop/browser-uc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/browser-uc.yaml -------------------------------------------------------------------------------- /test/data/desktop/engine-goanna.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/engine-goanna.yaml -------------------------------------------------------------------------------- /test/data/desktop/engine-servo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/engine-servo.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-amigaos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-amigaos.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-aros.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-aros.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-beos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-beos.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-bsd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-bsd.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-chromeos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-chromeos.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-haiku.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-haiku.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-irix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-irix.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-joli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-joli.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-linux.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-morphos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-morphos.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-os2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-os2.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-osx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-osx.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-redstar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-redstar.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-remix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-remix.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-riscos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-riscos.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-solaris.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-solaris.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-syllable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-syllable.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-unix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-unix.yaml -------------------------------------------------------------------------------- /test/data/desktop/os-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/os-windows.yaml -------------------------------------------------------------------------------- /test/data/desktop/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/other.yaml -------------------------------------------------------------------------------- /test/data/desktop/platform-electron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/platform-electron.yaml -------------------------------------------------------------------------------- /test/data/desktop/platform-qt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/desktop/platform-qt.yaml -------------------------------------------------------------------------------- /test/data/ereader/amazon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/ereader/amazon.yaml -------------------------------------------------------------------------------- /test/data/ereader/kobo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/ereader/kobo.yaml -------------------------------------------------------------------------------- /test/data/ereader/nook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/ereader/nook.yaml -------------------------------------------------------------------------------- /test/data/ereader/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/ereader/other.yaml -------------------------------------------------------------------------------- /test/data/ereader/pocketbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/ereader/pocketbook.yaml -------------------------------------------------------------------------------- /test/data/ereader/sony.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/ereader/sony.yaml -------------------------------------------------------------------------------- /test/data/gaming/microsoft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/gaming/microsoft.yaml -------------------------------------------------------------------------------- /test/data/gaming/nintendo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/gaming/nintendo.yaml -------------------------------------------------------------------------------- /test/data/gaming/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/gaming/other.yaml -------------------------------------------------------------------------------- /test/data/gaming/sega.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/gaming/sega.yaml -------------------------------------------------------------------------------- /test/data/gaming/sony.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/gaming/sony.yaml -------------------------------------------------------------------------------- /test/data/headset/device-gear.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/headset/device-gear.yaml -------------------------------------------------------------------------------- /test/data/headset/device-glass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/headset/device-glass.yaml -------------------------------------------------------------------------------- /test/data/headset/device-oculus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/headset/device-oculus.yaml -------------------------------------------------------------------------------- /test/data/media/device-archos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/media/device-archos.yaml -------------------------------------------------------------------------------- /test/data/media/device-walkman.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/media/device-walkman.yaml -------------------------------------------------------------------------------- /test/data/media/device-zune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/media/device-zune.yaml -------------------------------------------------------------------------------- /test/data/mobile/app-chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/app-chat.yaml -------------------------------------------------------------------------------- /test/data/mobile/app-download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/app-download.yaml -------------------------------------------------------------------------------- /test/data/mobile/app-email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/app-email.yaml -------------------------------------------------------------------------------- /test/data/mobile/app-media.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/app-media.yaml -------------------------------------------------------------------------------- /test/data/mobile/app-news.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/app-news.yaml -------------------------------------------------------------------------------- /test/data/mobile/app-other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/app-other.yaml -------------------------------------------------------------------------------- /test/data/mobile/app-search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/app-search.yaml -------------------------------------------------------------------------------- /test/data/mobile/app-shopping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/app-shopping.yaml -------------------------------------------------------------------------------- /test/data/mobile/app-social.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/app-social.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-2345.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-2345.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-360.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-360.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-au.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-au.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-baidu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-baidu.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-chrome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-chrome.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-dolfin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-dolfin.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-dolphin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-dolphin.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-edge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-edge.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-eui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-eui.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-firefox-ios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-firefox-ios.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-ibrowser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-ibrowser.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-iris.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-iris.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-jig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-jig.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-lg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-lg.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-maxthon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-maxthon.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-mib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-mib.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-minibrowser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-minibrowser.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-mme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-mme.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-netfront.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-netfront.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-ninesky.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-ninesky.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-nokiaxpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-nokiaxpress.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-novarra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-novarra.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-obigo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-obigo.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-openwave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-openwave.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-opera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-opera.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-other.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-polaris.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-polaris.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-puffin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-puffin.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-qq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-qq.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-samsung.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-samsung.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-skyfire.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-skyfire.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-sogou.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-sogou.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-uc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-uc.yaml -------------------------------------------------------------------------------- /test/data/mobile/browser-webview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/browser-webview.yaml -------------------------------------------------------------------------------- /test/data/mobile/carrier-docomo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/carrier-docomo.yaml -------------------------------------------------------------------------------- /test/data/mobile/carrier-emobile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/carrier-emobile.yaml -------------------------------------------------------------------------------- /test/data/mobile/carrier-kddi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/carrier-kddi.yaml -------------------------------------------------------------------------------- /test/data/mobile/carrier-softbank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/carrier-softbank.yaml -------------------------------------------------------------------------------- /test/data/mobile/carrier-willcom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/carrier-willcom.yaml -------------------------------------------------------------------------------- /test/data/mobile/device-kin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/device-kin.yaml -------------------------------------------------------------------------------- /test/data/mobile/device-nokiax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/device-nokiax.yaml -------------------------------------------------------------------------------- /test/data/mobile/engine-servo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/engine-servo.yaml -------------------------------------------------------------------------------- /test/data/mobile/header-requestedwith.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/header-requestedwith.yaml -------------------------------------------------------------------------------- /test/data/mobile/header-wap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/header-wap.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-lg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-lg.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-microsoft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-microsoft.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-motorola.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-motorola.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-nokia-asha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-nokia-asha.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-nokia-series40.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-nokia-series40.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-nokia-series60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-nokia-series60.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-nokia-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-nokia-windows.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-samsung-android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-samsung-android.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-samsung-bada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-samsung-bada.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-siemens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-siemens.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-sony.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-sony.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-sonyericsson.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-sonyericsson.yaml -------------------------------------------------------------------------------- /test/data/mobile/manufacturer-xiaomi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/manufacturer-xiaomi.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-aliyun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-aliyun.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-android.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-asha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-asha.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-bada.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-bada.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-baiduyi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-baiduyi.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-blackberry-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-blackberry-10.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-blackberry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-blackberry.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-brew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-brew.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-cos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-cos.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-ezxlinux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-ezxlinux.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-feature.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-firefoxos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-firefoxos.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-fireos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-fireos.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-geos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-geos.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-harmony.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-harmony.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-ios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-ios.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-kaios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-kaios.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-limo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-limo.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-maemo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-maemo.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-meego.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-meego.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-mre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-mre.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-s30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-s30.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-s40.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-s40.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-s80.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-s80.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-sailfish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-sailfish.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-spreadtrum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-spreadtrum.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-symbian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-symbian.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-threadx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-threadx.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-tizen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-tizen.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-ubuntu.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-vre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-vre.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-webos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-webos.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-windowsce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-windowsce.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-windowsmobile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-windowsmobile.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-windowsphone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-windowsphone.yaml -------------------------------------------------------------------------------- /test/data/mobile/os-wophone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/os-wophone.yaml -------------------------------------------------------------------------------- /test/data/mobile/platform-air.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/platform-air.yaml -------------------------------------------------------------------------------- /test/data/mobile/wap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/mobile/wap.yaml -------------------------------------------------------------------------------- /test/data/other/camouflage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/other/camouflage.yaml -------------------------------------------------------------------------------- /test/data/other/reported.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/other/reported.yaml -------------------------------------------------------------------------------- /test/data/other/xmlhttprequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/other/xmlhttprequest.yaml -------------------------------------------------------------------------------- /test/data/pda/airboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/pda/airboard.yaml -------------------------------------------------------------------------------- /test/data/pda/casio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/pda/casio.yaml -------------------------------------------------------------------------------- /test/data/pda/generic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/pda/generic.yaml -------------------------------------------------------------------------------- /test/data/pda/mylo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/pda/mylo.yaml -------------------------------------------------------------------------------- /test/data/pda/oasys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/pda/oasys.yaml -------------------------------------------------------------------------------- /test/data/pda/palm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/pda/palm.yaml -------------------------------------------------------------------------------- /test/data/pda/psion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/pda/psion.yaml -------------------------------------------------------------------------------- /test/data/pda/zaurus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/pda/zaurus.yaml -------------------------------------------------------------------------------- /test/data/phone/snom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/phone/snom.yaml -------------------------------------------------------------------------------- /test/data/printer/canon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/printer/canon.yaml -------------------------------------------------------------------------------- /test/data/printer/hp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/printer/hp.yaml -------------------------------------------------------------------------------- /test/data/printer/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/printer/other.yaml -------------------------------------------------------------------------------- /test/data/printer/taskalfa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/printer/taskalfa.yaml -------------------------------------------------------------------------------- /test/data/signage/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/signage/other.yaml -------------------------------------------------------------------------------- /test/data/tablet/browser-opera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/browser-opera.yaml -------------------------------------------------------------------------------- /test/data/tablet/manufacturer-samsung.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/manufacturer-samsung.yaml -------------------------------------------------------------------------------- /test/data/tablet/manufacturer-webtab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/manufacturer-webtab.yaml -------------------------------------------------------------------------------- /test/data/tablet/os-android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/os-android.yaml -------------------------------------------------------------------------------- /test/data/tablet/os-blackberry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/os-blackberry.yaml -------------------------------------------------------------------------------- /test/data/tablet/os-firefoxos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/os-firefoxos.yaml -------------------------------------------------------------------------------- /test/data/tablet/os-fireos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/os-fireos.yaml -------------------------------------------------------------------------------- /test/data/tablet/os-ios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/os-ios.yaml -------------------------------------------------------------------------------- /test/data/tablet/os-leos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/os-leos.yaml -------------------------------------------------------------------------------- /test/data/tablet/os-ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/os-ubuntu.yaml -------------------------------------------------------------------------------- /test/data/tablet/os-webos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/tablet/os-webos.yaml -------------------------------------------------------------------------------- /test/data/television/appletv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/appletv.yaml -------------------------------------------------------------------------------- /test/data/television/browser-espial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/browser-espial.yaml -------------------------------------------------------------------------------- /test/data/television/browser-machblue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/browser-machblue.yaml -------------------------------------------------------------------------------- /test/data/television/browser-nx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/browser-nx.yaml -------------------------------------------------------------------------------- /test/data/television/browser-opera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/browser-opera.yaml -------------------------------------------------------------------------------- /test/data/television/firetv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/firetv.yaml -------------------------------------------------------------------------------- /test/data/television/google.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/google.yaml -------------------------------------------------------------------------------- /test/data/television/hitachi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/hitachi.yaml -------------------------------------------------------------------------------- /test/data/television/kreatv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/kreatv.yaml -------------------------------------------------------------------------------- /test/data/television/lg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/lg.yaml -------------------------------------------------------------------------------- /test/data/television/mitsubishi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/mitsubishi.yaml -------------------------------------------------------------------------------- /test/data/television/nvidia.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/nvidia.yaml -------------------------------------------------------------------------------- /test/data/television/opentv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/opentv.yaml -------------------------------------------------------------------------------- /test/data/television/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/other.yaml -------------------------------------------------------------------------------- /test/data/television/panasonic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/panasonic.yaml -------------------------------------------------------------------------------- /test/data/television/philips.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/philips.yaml -------------------------------------------------------------------------------- /test/data/television/pioneer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/pioneer.yaml -------------------------------------------------------------------------------- /test/data/television/roku.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/roku.yaml -------------------------------------------------------------------------------- /test/data/television/samsung.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/samsung.yaml -------------------------------------------------------------------------------- /test/data/television/sanyo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/sanyo.yaml -------------------------------------------------------------------------------- /test/data/television/sharp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/sharp.yaml -------------------------------------------------------------------------------- /test/data/television/sony.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/sony.yaml -------------------------------------------------------------------------------- /test/data/television/toshiba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/television/toshiba.yaml -------------------------------------------------------------------------------- /test/data/watch/os-android-wear.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/watch/os-android-wear.yaml -------------------------------------------------------------------------------- /test/data/watch/os-android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/watch/os-android.yaml -------------------------------------------------------------------------------- /test/data/watch/os-tizen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/data/watch/os-tizen.yaml -------------------------------------------------------------------------------- /test/model/BrowserTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/model/BrowserTest.js -------------------------------------------------------------------------------- /test/model/DeviceTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/model/DeviceTest.js -------------------------------------------------------------------------------- /test/model/EngineTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/model/EngineTest.js -------------------------------------------------------------------------------- /test/model/FamilyTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/model/FamilyTest.js -------------------------------------------------------------------------------- /test/model/MainTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/model/MainTest.js -------------------------------------------------------------------------------- /test/model/OsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/model/OsTest.js -------------------------------------------------------------------------------- /test/model/UsingTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/model/UsingTest.js -------------------------------------------------------------------------------- /test/model/VersionTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/model/VersionTest.js -------------------------------------------------------------------------------- /test/model/primitive/BaseTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/model/primitive/BaseTest.js -------------------------------------------------------------------------------- /test/model/primitive/NameVersionTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/model/primitive/NameVersionTest.js -------------------------------------------------------------------------------- /test/unit/AnalyserTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/unit/AnalyserTest.js -------------------------------------------------------------------------------- /test/unit/CacheTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/unit/CacheTest.js -------------------------------------------------------------------------------- /test/unit/MassiveTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/unit/MassiveTest.js -------------------------------------------------------------------------------- /test/unit/ParserTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/test/unit/ParserTest.js -------------------------------------------------------------------------------- /which-browser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhichBrowser/Parser-JavaScript/HEAD/which-browser.d.ts --------------------------------------------------------------------------------