'use strict'; const fallbackWindow = {}; function locateWindow() { if (typeof window !== "undefined") { return window; } else if (typeof self !== "undefined") { return self; } return fallbackWindow; } exports.locateWindow = locateWindow;