start removing newNumber and number types from the code.

This commit is contained in:
2024-07-11 03:55:19 +01:00
parent 70f2c47e4f
commit bfdb7b6e6a
10 changed files with 150 additions and 128 deletions

View File

@@ -8,8 +8,6 @@ func typeof(val any) string {
return "boolean"
case string:
return "string"
case number:
return "number"
case []any:
return "array"
case anymap: