Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,18 @@ const browserHandler = {

```

### Possible Browser Detection

- ie
- edge
- firefox
- opera
- chrome
- safari
- blink
- googlebot
- unknown

Handler determination goes from most to least specific. It will first look for an `android-browserName` match and then `android` (assuming the OS is Android) then failing that it will look for `browserName` and finally will fallback to using `default`. This allows you to custom tailor responses for each scenario, or to provide general cases.


Expand Down