1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

js: array improvements (#11952)

This commit is contained in:
playX
2021-09-26 07:33:53 +03:00
committed by GitHub
parent f3757a7cd1
commit 863dd0b23e
11 changed files with 469 additions and 193 deletions

View File

@@ -52,7 +52,7 @@ pub fn (mut b Builder) writeln(s string) {
pub fn (mut b Builder) str() string {
s := ''
#for (const c of b.val.buf.arr)
#for (const c of b.val.buf.arr.arr)
#s.str += String.fromCharCode(+c)
return s