zed
zed copied to clipboard
package zson shouldn't use unicode.IsDigit()
The zson spec defines a numeric as [0-9]+ but incorrectly uses unicode.IsDigit() is several places. We should fix this with an isDigit() function that checks >='0' && <='9'