UNPKG
@probe.gl/log
Version:
beta (4.1.0-alpha.2)
latest (4.1.1)
4.1.1
4.1.0
4.1.0-alpha.2
4.0.9
4.0.8
4.0.7
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
4.0.0-alpha.2
4.0.0-alpha.1
3.6.0
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.5.0-alpha.5
3.5.0-alpha.4
3.5.0-alpha.3
3.5.0-alpha.2
JavaScript debug logging for browser and Node
visgl/probe.gl
@probe.gl/log
/
src
/
utils
/
assert.ts
6 lines
(5 loc)
•
168 B
text/typescript
View Raw
1
2
3
4
5
6
export
default
function
assert
(
condition
:
unknown
,
message
?:
string
): asserts condition {
if
(!condition) {
throw
new
Error
(message ||
'Assertion failed'
); } }