isValueChar function

bool isValueChar(
  1. int byte
)

Implementation

bool isValueChar(int byte) {
  return (byte > 31 && byte < 128) ||
      (byte == CharCode.SP) ||
      (byte == CharCode.HT);
}