2025-08-04 18:41:00 -04:00

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;
}