pub fn verify_first_char(first_char: &char)
Verifies that the first character of the file is a ‘[’.
first_char
use jsonl_converter::reader::verify_first_char; let first_char = '['; verify_first_char(&first_char);