error: string|Error = 'input is not an optional null'
Returns assertsinputisnull|undefined
Example
assertIsOptionalNull(null); // does not throw assertIsOptionalNull(undefined); // does not throw assertIsOptionalNull(0); // throws TypeError: input is not an optional null
Assert that
inputisnullorundefined.