Refs: https://github.com/web-platform-tests/wpt/pull/26317 PR-URL: https://github.com/nodejs/node/pull/36032 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
5 lines
280 B
JavaScript
5 lines
280 B
JavaScript
/* Whether the browser is Chromium-based with MojoJS enabled */
|
|
export const isChromiumBased = 'MojoInterfaceInterceptor' in self;
|
|
|
|
/* Whether the browser is WebKit-based with internal test-only API enabled */
|
|
export const isWebKitBased = !isChromiumBased && 'internals' in self;
|