assert.ts 126 Bytes
Newer Older
1 2 3 4 5
export const assert = (condition: boolean, message: string): void => {
  if (!condition) {
    throw new Error(message)
  }
}