mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
export const invariant = (assertion: boolean, error: string): void => {
|
|
if (!assertion) {
|
|
console.error(error);
|
|
}
|
|
};
|