UNPKG
erlc-api
Version:
latest (3.1.0)
3.1.0
3.0.0
2.3.4
2.3.3
2.3.2
2.3.1
2.2.1
2.2.0
2.0.0
1.3.12
1.3.11
1.3.10
1.3.9
1.3.8
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
An ER:LC API wrapper for JS/TS
github.com/Exodo0/ERLC-API
Exodo0/ERLC-API
erlc-api
/
src
/
functions
/
assert.js
5 lines
•
111 B
JavaScript
View Raw
1
2
3
4
5
module
.
exports
=
function
(
condition, message
) {
if
(!condition) {
throw
new
Error
(message); } }