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

8 lines
81 B
Go
Raw Normal View History

2018-05-19 05:38:51 -04:00
package main
func Assert(cond bool, msg string) {
if !cond {
panic(msg)
}
}