Skip to content

空值

ts
/**
 * 空数组
 */
export const EMPTY_ARRAY = Object.seal([])
/**
 * 空字符串
 */
export const EMPTY_STRING = Object.freeze('')
/**
 * 空对象
 */
export const EMPTY_OBJECT = Object.freeze({})
/**
 * 空方法
 */
export const EMPTY_FUNCTION = () => {}