Safe Window Getters
npm install window-gettersSafe Window Getters
``typescript
function getFromWindow
function getFromWindowOrThrow
function getDocumentOrThrow(): Document;
function getDocument(): Document | undefined;
function getNavigatorOrThrow(): Navigator;
function getNavigator(): Navigator | undefined;
function getLocationOrThrow(): Location;
function getLocation(): Location | undefined;
function getCryptoOrThrow(): Crypto;
function getCrypto(): Crypto | undefined;
function getLocalStorageOrThrow(): Storage;
function getLocalStorage(): Storage | undefined;
``