* ?? * @link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator * @returns {boolean}
(args)
| 1829 | * @returns {boolean} |
| 1830 | */ |
| 1831 | function nullish(args) { |
| 1832 | return !(args !== null && args !== undefined) |
| 1833 | } |
| 1834 | |
| 1835 | // TypeError: Cannot read properties of null (reading 'user') |
| 1836 | // at WebMessageInfo.get (file:///home/container/lib/simple.js:888:70) |