Panics if the value is null or undefined or returns it otherwise
null
undefined
Target value
Unchanged value
If the value is null or undefined
const fooOrUndefined = document.getElementById('foo'); // html element or `undefined`const foo = unwrap(fooOrUndefined); // exactly html element Copy
const fooOrUndefined = document.getElementById('foo'); // html element or `undefined`const foo = unwrap(fooOrUndefined); // exactly html element
Generated using TypeDoc
Panics if the value is
null
orundefined
or returns it otherwise