(s = {})
| 1145 | C = { dictionary: 'alphanum', shuffle: !0, debug: !1, length: x, counter: 0 }, |
| 1146 | j = class _ShortUniqueId { |
| 1147 | constructor(s = {}) { |
| 1148 | ;(__publicField(this, 'counter'), |
| 1149 | __publicField(this, 'debug'), |
| 1150 | __publicField(this, 'dict'), |
| 1151 | __publicField(this, 'version'), |
| 1152 | __publicField(this, 'dictIndex', 0), |
| 1153 | __publicField(this, 'dictRange', []), |
| 1154 | __publicField(this, 'lowerBound', 0), |
| 1155 | __publicField(this, 'upperBound', 0), |
| 1156 | __publicField(this, 'dictLength', 0), |
| 1157 | __publicField(this, 'uuidLength'), |
| 1158 | __publicField(this, '_digit_first_ascii', 48), |
| 1159 | __publicField(this, '_digit_last_ascii', 58), |
| 1160 | __publicField(this, '_alpha_lower_first_ascii', 97), |
| 1161 | __publicField(this, '_alpha_lower_last_ascii', 123), |
| 1162 | __publicField(this, '_hex_last_ascii', 103), |
| 1163 | __publicField(this, '_alpha_upper_first_ascii', 65), |
| 1164 | __publicField(this, '_alpha_upper_last_ascii', 91), |
| 1165 | __publicField(this, '_number_dict_ranges', { |
| 1166 | digits: [this._digit_first_ascii, this._digit_last_ascii], |
| 1167 | }), |
| 1168 | __publicField(this, '_alpha_dict_ranges', { |
| 1169 | lowerCase: [this._alpha_lower_first_ascii, this._alpha_lower_last_ascii], |
| 1170 | upperCase: [this._alpha_upper_first_ascii, this._alpha_upper_last_ascii], |
| 1171 | }), |
| 1172 | __publicField(this, '_alpha_lower_dict_ranges', { |
| 1173 | lowerCase: [this._alpha_lower_first_ascii, this._alpha_lower_last_ascii], |
| 1174 | }), |
| 1175 | __publicField(this, '_alpha_upper_dict_ranges', { |
| 1176 | upperCase: [this._alpha_upper_first_ascii, this._alpha_upper_last_ascii], |
| 1177 | }), |
| 1178 | __publicField(this, '_alphanum_dict_ranges', { |
| 1179 | digits: [this._digit_first_ascii, this._digit_last_ascii], |
| 1180 | lowerCase: [this._alpha_lower_first_ascii, this._alpha_lower_last_ascii], |
| 1181 | upperCase: [this._alpha_upper_first_ascii, this._alpha_upper_last_ascii], |
| 1182 | }), |
| 1183 | __publicField(this, '_alphanum_lower_dict_ranges', { |
| 1184 | digits: [this._digit_first_ascii, this._digit_last_ascii], |
| 1185 | lowerCase: [this._alpha_lower_first_ascii, this._alpha_lower_last_ascii], |
| 1186 | }), |
| 1187 | __publicField(this, '_alphanum_upper_dict_ranges', { |
| 1188 | digits: [this._digit_first_ascii, this._digit_last_ascii], |
| 1189 | upperCase: [this._alpha_upper_first_ascii, this._alpha_upper_last_ascii], |
| 1190 | }), |
| 1191 | __publicField(this, '_hex_dict_ranges', { |
| 1192 | decDigits: [this._digit_first_ascii, this._digit_last_ascii], |
| 1193 | alphaDigits: [this._alpha_lower_first_ascii, this._hex_last_ascii], |
| 1194 | }), |
| 1195 | __publicField(this, '_dict_ranges', { |
| 1196 | _number_dict_ranges: this._number_dict_ranges, |
| 1197 | _alpha_dict_ranges: this._alpha_dict_ranges, |
| 1198 | _alpha_lower_dict_ranges: this._alpha_lower_dict_ranges, |
| 1199 | _alpha_upper_dict_ranges: this._alpha_upper_dict_ranges, |
| 1200 | _alphanum_dict_ranges: this._alphanum_dict_ranges, |
| 1201 | _alphanum_lower_dict_ranges: this._alphanum_lower_dict_ranges, |
| 1202 | _alphanum_upper_dict_ranges: this._alphanum_upper_dict_ranges, |
| 1203 | _hex_dict_ranges: this._hex_dict_ranges, |
| 1204 | }), |
nothing calls this directly
no test coverage detected