Files
core/hwe/ts/util/exportWindow.ts
Hide_D de48651ae7 feat: exportWindow
- global을 지저분하게 하지 않고, window에 출력만 해줌
2021-08-28 17:20:44 +09: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;
}