@mega-yfue/eufy-sdk / asBool
Function: asBool()
ts
function asBool(value): boolean;Coerce a property value to a boolean WITHOUT the Boolean("false") === true footgun (every non-empty string — including "false" and "0" — is truthy under Boolean()). Only an explicit true / 1 / "1" / "true" (case-insensitive) enables; everything else is false.
Parameters
value
unknown
Returns
boolean