Files
est-frame/node_modules/@algolia/autocomplete-shared/dist/esm/safelyRunOnBrowser.js
2025-10-22 05:38:27 +00:00

11 lines
227 B
JavaScript
Executable File

/**
* Safely runs code meant for browser environments only.
*/
export function safelyRunOnBrowser(callback) {
if (typeof window !== 'undefined') {
return callback({
window: window
});
}
return undefined;
}