add client, seek, and size

This commit is contained in:
2023-06-25 00:52:52 +01:00
parent 4ca158cc96
commit 6ff2d7c69f
8 changed files with 244 additions and 7 deletions

View File

@@ -18,6 +18,10 @@ func typeof(val any) string {
return "function"
case builtinFunc:
return "function"
case byte:
return "byte"
case []byte:
return "buffer"
case ArObject:
if val, ok := x.obj["__name__"]; ok {
val := ArValidToAny(val)