mirror of
https://github.com/visgl/react-map-gl.git
synced 2026-01-25 16:02:50 +00:00
9 lines
316 B
JavaScript
9 lines
316 B
JavaScript
// Replacement for the external assert method to reduce bundle size
|
|
// Note: We don't use the second "message" argument in calling code,
|
|
// so no need to support it here
|
|
export default function assert(condition, message) {
|
|
if (!condition) {
|
|
throw new Error(message || 'react-map-gl: assertion failed.');
|
|
}
|
|
}
|