Const
Inclusive character ranges accepted by AtomLetter — i.e., the characters legal in any but the first position of an FSL state name (atom).
AtomLetter
Includes ASCII digits/letters and the symbols ., +, _, ^, (, ), *, &, $, #, @, !, ?, ,, plus the high-Unicode range U+0080–U+FFFF.
.
+
_
^
(
)
*
&
$
#
@
!
?
,
U+0080
U+FFFF
import { state_name_chars } from 'jssm'; state_name_chars.some(r => 'A' >= r.from && 'A' <= r.to); // => true Copy
import { state_name_chars } from 'jssm'; state_name_chars.some(r => 'A' >= r.from && 'A' <= r.to); // => true
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 rangeU+0080–U+FFFF.