Function: isEmptySafe()
isEmptySafe(
x,numberableOnly):boolean|1
Defined in: packages/core/src/is/isEmpty.ts:100
Safe version of isEmpty with extended type checks and cross-realm handling.
CAUTION: much slower than isEmpty due to use of Object.prototype.toString.call()
Cross-realm means objects created in different JavaScript contexts. Eg: iframe, node vm context, worker context, browser extensions etc.
Parameters
x
unknown
The value to check for emptiness.
numberableOnly
boolean = false
Returns
boolean | 1
true if the value is considered empty, false otherwise.