/** * Asserts that the provided value is neither null nor undefined. * * This function is a more explicit alternative to `expect(value).to.exist` in test cases. * It is particularly useful in situations where TypeScript's control flow analysis * does not recognize standard assertions, ensuring that `value` is treated as * non-nullable in the subsequent code. This can prevent potential type errors * and enhance code safety and clarity. */ export function expectExists(value: T, errorMessage?: string): asserts value is NonNullable { if (value === null || value === undefined) { throw new Error([ 'Assertion failed: expected value is either null or undefined.', 'Expected a non-null and non-undefined value.', ...(errorMessage ? [errorMessage] : []), ].join('\n')); } }