* Use when you don't care what a value is, you just want to ensure a value * is true in a boolean context. In JavaScript, there are six falsy values: * `false`, `0`, `''`, `null`, `undefined`, and `NaN`. Everything else is truthy.
()
| 202 | * `false`, `0`, `''`, `null`, `undefined`, and `NaN`. Everything else is truthy. |
| 203 | */ |
| 204 | toBeTruthy(): R; |
| 205 | /** |
| 206 | * Used to check that a variable is undefined. |
| 207 | */ |
no outgoing calls