mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-23 11:22:15 +00:00
10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
import ObjectUtil from './ObjectUtil'
|
|
|
|
ObjectUtil.objectLoop(ObjectUtil, (fn, key) => {
|
|
// @ts-expect-error
|
|
window[key as any] = fn
|
|
})
|
|
|
|
// @ts-expect-error
|
|
window.ObjectUtil = ObjectUtil
|