UNPKG
react-bkoi-gl
Version:
latest (2.2.1)
2.2.1
2.2.0
2.1.0
2.0.1
2.0.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
React components for Barikoi GL JS
docs.barikoi.com/docs/maps-api
barikoi/react-bkoi-gl
react-bkoi-gl
/
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); } }