UNPKG

@qntm-code/utils

Version:

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

12 lines (11 loc) 234 B
export interface IsEqualTestDefinition { description: string; a: any; b: any; expected: boolean; only?: boolean; } export interface IsEqualTestSuite { description: string; tests: IsEqualTestDefinition[]; }