Merge branch 'hotfix/1.4.2'

pull/148/head 1.4.2
Denis Demchenko 8 years ago
commit 94da04f045

@ -1,5 +1,11 @@
# Bowser Changelog
### 1.4.2 (July 26, 2016)
- [FIX] Fix missing `isUnsupportedBrowser` in typings description
- [DOC] Fix `check`'s declaration in README
### 1.4.1 (July 7, 2016)
- [FIX] Fix `strictMode` logic for `isUnsupportedBrowser`

@ -28,7 +28,7 @@ Use it to get object with detected flags of your current browser.
### bowser._detect(ua `:String`)`:Object`
Use it to get object with detected flags from User Agent string.
### bowser.check(minVersions`:Object`, strictMode`:Boolean`)`:Boolean`
### bowser.check(minVersions`:Object`, strictMode`:Boolean`, [ua]`:String`)`:Boolean`
Use it to check if browser supported.
```

@ -7,7 +7,7 @@
"sniff",
"detection"
],
"version": "1.4.1",
"version": "1.4.2",
"homepage": "https://github.com/ded/bowser",
"author": "Dustin Diaz <dustin@dustindiaz.com> (http://dustindiaz.com)",
"main": "./src/bowser.js",

1
typings.d.ts vendored

@ -40,6 +40,7 @@ export const windows: boolean
export const windowsphone: boolean
export function test(browserList: Flag[]): boolean
export function isUnsupportedBrowser(minVersions:Object, strictMode?:Boolean, ua?:string): boolean
export type Flag = "a" | "b" | "c" | "android" | "bada" | "blackberry"
| "chrome" | "firefox" | "gecko" | "ios" | "msie"

Loading…
Cancel
Save