UNPKG

@overture-stack/lyric

Version:
10 lines (9 loc) 279 B
import { expect } from 'chai'; /** * Asserts that the value is not null or undefined. * This lets TypeScript know the value is of type T after this check. * @param value The value to check for existence. */ export function assertExists(value) { expect(value).to.exist; }