UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

8 lines (7 loc) 254 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isJsdom = void 0; /** * Check if the current environment is JSDOM. */ exports.isJsdom = typeof window !== 'undefined' && window.navigator.userAgent.includes('jsdom');