Skip to content

Commit

Permalink
Merge pull request #340 from nepa/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
lancedikson authored Jul 19, 2019
2 parents cb85a7f + c1edead commit d9b7373
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@ const isValidBrowser = browser.satisfies({
// or in general
chrome: "~20.1.1432",
firefox: ">31",
opera: ">=22"
opera: ">=22",

// also supports equality operator
chrome: "=20.1.1432", // will match particular build only

// and loose-equality operator
chrome: "~20" // will match any 20.* sub-version
chrome: "~20", // will match any 20.* sub-version
chrome: "~20.1" // will match any 20.1.* sub-version (20.1.19 as well as 20.1.12.42-alpha.1)
});
```
Expand Down

0 comments on commit d9b7373

Please sign in to comment.