0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 17:34:47 -05:00
deno/util.go
2018-05-19 05:39:27 -04:00

7 lines
81 B
Go

package main
func Assert(cond bool, msg string) {
if !cond {
panic(msg)
}
}