assert.ts 126 Bytes
export const assert = (condition: boolean, message: string): void => {
  if (!condition) {
    throw new Error(message)
  }
}