UNPKG

@mantleio/sdk

Version:
6 lines (5 loc) 126 B
export const assert = (condition: boolean, message: string): void => { if (!condition) { throw new Error(message) } }