You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Loads the detect logic after the page has loaded to prevent a high-priority script module network request from competing with other critical resources.
*
* This JavaScript file must be contain a single top-level function which is not exported. The file is inlined as part of another module which wraps the module in an IIFE.
*
* @param {string} detectSrc
* @param {Object} detectArgs
*/
// eslint-disable-next-line no-unused-vars
async function load( detectSrc, detectArgs ) {
const doc = document;
const win = window;
// Ensure the DOM is loaded (although it surely already is since we're executing in a module).