Home > @easyops-cn/brick-next-pipes > nullish
nullish() function
空值合并(??
)。
Logic
Signature:
export declare function nullish<T, U>(value: T, defaultValue: U): T | U;
Parameters
Parameter | Type | Description |
---|---|---|
value | T | 输入值。 |
defaultValue | U | 默认值。 |
Returns:
T | U
当输入值是 null
或 undefined
时返回默认值,否则返回原输入值。