scratch-www/src/lib/supported-browser.js
chrisgarrity 70c4240b8d Revise unsupported browser
Only reject IE, other gui errors should get handled by error boundary in gui.
2019-01-09 14:40:06 -05:00

9 lines
228 B
JavaScript

import bowser from 'bowser';
/**
* Helper function to determine if the browser is supported.
* @returns {boolean} False if the platform is definitely not supported.
*/
export default function () {
return !bowser.msie;
}