isExp function

bool isExp(
  1. String char
)

Tokenizes a JSON string into a list of tokens.

Implementation

bool isExp(String char) {
  return char == 'e' || char == 'E';
}