mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-03-02 08:14:16 -05:00
9 lines
228 B
JavaScript
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;
|
|
}
|