isNormalChar function

bool isNormalChar(
  1. int c
)

Implementation

bool isNormalChar(int c) => c <= 91
    ? c <= 33
        ? c >= 32
        : c >= 35
    : c <= 1114111 && c >= 93;