UNPKG

@akamfoad/qrcode

Version:

The library is generating QR codes as SVG, HTML5 Canvas, PNG and JPG files, or text.

9 lines (7 loc) 147 B
export function invariant( condition: boolean, message: string, ): asserts condition { if (condition) return; throw new Error(message); }