UNPKG
mmr-gl-react
Version:
latest (0.0.12)
0.0.12
0.0.8
0.0.5
React components for MMR GL JS-compatible libraries
mmr-gl-react
/
src
/
utils
/
assert.ts
6 lines
(5 loc)
•
122 B
text/typescript
View Raw
1
2
3
4
5
6
export
default
function
assert
(
condition
:
any
,
message
:
string
) {
if
(!condition) {
throw
new
Error
(message); } }