UNPKG
@ox-fun/drift-sdk
Version:
latest (2.60.0-beta.6.0.0.1)
2.60.0-beta.6.0.0.1
2.59.0-beta.6.0.0.2
2.59.0-beta.6.0.0.1
SDK for Drift Protocol
@ox-fun/drift-sdk
/
src
/
assert
/
assert.ts
6 lines
(5 loc)
•
149 B
text/typescript
View Raw
1
2
3
4
5
6
export
function
assert
(
condition
:
boolean
,
error
?:
string
):
void
{
if
(!condition) {
throw
new
Error
(error ||
'Unspecified AssertionError'
); } }