Files
core_ng/server/util/exportWindow.ts
T
2023-08-05 12:12:18 +00:00

4 lines
196 B
TypeScript

export function exportWindow(obj:unknown, objName: string, targetWindow?: unknown):void{
const target:unknown = targetWindow ?? window;
(target as {[v: string]: unknown})[objName] = obj;
}