mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
6 lines
132 B
V
6 lines
132 B
V
module builtin
|
|
|
|
// used to generate JS throw statements.
|
|
pub fn js_throw(s any) {
|
|
#throw (s instanceof Error ? s : new Error(s))
|
|
}
|