jssm 5.120.2 → 5.121.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -54,7 +54,8 @@ declare const named_colors: string[];
54
54
  * plus the high-Unicode range `U+0080`–`U+FFFF`.
55
55
  *
56
56
  * @example
57
- * state_name_chars.some(r => 'A' >= r.from && 'A' <= r.to); // true
57
+ * import { state_name_chars } from 'jssm';
58
+ * state_name_chars.some(r => 'A' >= r.from && 'A' <= r.to); // => true
58
59
  */
59
60
  declare const state_name_chars: ReadonlyArray<{
60
61
  from: string;
@@ -69,7 +70,8 @@ declare const state_name_chars: ReadonlyArray<{
69
70
  * `?`, `,`, and the high-Unicode range `U+0080`–`U+FFFF`.
70
71
  *
71
72
  * @example
72
- * state_name_first_chars.some(r => '+' >= r.from && '+' <= r.to); // false
73
+ * import { state_name_first_chars } from 'jssm';
74
+ * state_name_first_chars.some(r => '+' >= r.from && '+' <= r.to); // => false
73
75
  */
74
76
  declare const state_name_first_chars: ReadonlyArray<{
75
77
  from: string;
@@ -84,8 +86,9 @@ declare const state_name_first_chars: ReadonlyArray<{
84
86
  * Three ranges: `U+0020`–`U+0026`, `U+0028`–`U+005B`, `U+005D`–`U+FFFF`.
85
87
  *
86
88
  * @example
87
- * action_label_chars.some(r => ' ' >= r.from && ' ' <= r.to); // true
88
- * action_label_chars.some(r => "'" >= r.from && "'" <= r.to); // false
89
+ * import { action_label_chars } from 'jssm';
90
+ * action_label_chars.some(r => ' ' >= r.from && ' ' <= r.to); // => true
91
+ * action_label_chars.some(r => "'" >= r.from && "'" <= r.to); // => false
89
92
  */
90
93
  declare const action_label_chars: ReadonlyArray<{
91
94
  from: string;