Files

11 lines
227 B
JavaScript
Raw Permalink Normal View History

2025-08-27 14:05:33 +08:00
/**
* Safely runs code meant for browser environments only.
*/
export function safelyRunOnBrowser(callback) {
if (typeof window !== 'undefined') {
return callback({
window: window
});
}
return undefined;
}