mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
4 lines
171 B
TypeScript
4 lines
171 B
TypeScript
export const EMPTY_OBJ: { readonly [key: string]: any } = __DEV__
|
|
? Object.freeze({})
|
|
: {}
|
|
export const EMPTY_ARR: readonly never[] = __DEV__ ? Object.freeze([]) : []
|