mirror of
https://github.com/visgl/react-map-gl.git
synced 2026-01-25 16:02:50 +00:00
6 lines
122 B
TypeScript
6 lines
122 B
TypeScript
export default function assert(condition: any, message: string) {
|
|
if (!condition) {
|
|
throw new Error(message);
|
|
}
|
|
}
|