Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Having trouble using Satisfies with IE 11 #469

Open
ryanbelisle opened this issue Mar 18, 2021 · 0 comments
Open

Having trouble using Satisfies with IE 11 #469

ryanbelisle opened this issue Mar 18, 2021 · 0 comments

Comments

@ryanbelisle
Copy link

I'm trying to use the isValidBrowser code example to return true or false if IE11 is detected. However, it always returns undefined.

const Bowser = require("bowser"); // CommonJS

const browser = Bowser.getParser(window.navigator.userAgent);

const isValidBrowser = browser.satisfies({
  // declare browsers per OS
  windows: {
    ie: "11"
  }
  // chrome: ">89",
});
console.log(browser.getBrowser());
console.log(isValidBrowser);

Am I missing something?

Thanks in advance!
@ryanb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant