JSSM, a JavaScript state machine - the FSM for FSL
    Preparing search index...

    Variable state_name_charsConst

    state_name_chars: ReadonlyArray<{ from: string; to: string }> = ...

    Inclusive character ranges accepted by AtomLetter — i.e., the characters legal in any but the first position of an FSL state name (atom).

    Includes ASCII digits/letters and the symbols ., +, _, ^, (, ), *, &, $, #, @, !, ?, ,, plus the high-Unicode range U+0080U+FFFF.

    import { state_name_chars } from 'jssm';
    state_name_chars.some(r => 'A' >= r.from && 'A' <= r.to); // => true