mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
10 lines
191 B
V
10 lines
191 B
V
// DOM API wrapper for JS backend
|
|
module jsdom
|
|
|
|
pub fn get_html_canvas_element(elem IElement) ?HTMLCanvasElement {
|
|
if elem is HTMLCanvasElement {
|
|
return *elem
|
|
} else {
|
|
return none
|
|
}
|
|
}
|