Files
documentation/node_modules/@algolia/autocomplete-shared/dist/esm/safelyRunOnBrowser.js
2024-03-22 03:47:51 +05:30

11 lines
227 B
JavaScript

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