mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
strconv,v.gen.js: proper optionals returns, strconv compiles to the JS backend (#11364)
This commit is contained in:
9
vlib/builtin/js/utf8.js.v
Normal file
9
vlib/builtin/js/utf8.js.v
Normal file
@@ -0,0 +1,9 @@
|
||||
module builtin
|
||||
|
||||
pub fn utf8_str_visible_length(s string) int {
|
||||
// todo: proper implementation
|
||||
res := 0
|
||||
#res.val = s.str.length;
|
||||
|
||||
return res
|
||||
}
|
Reference in New Issue
Block a user