1/* Whether the browser is Chromium-based with MojoJS enabled */
2export const isChromiumBased = 'MojoInterfaceInterceptor' in self;
3
4/* Whether the browser is WebKit-based with internal test-only API enabled */
5export const isWebKitBased = !isChromiumBased && 'internals' in self;
6