@internal
(s: string, options: ParseOptions)
| 1412 | } |
| 1413 | /** @internal */ |
| 1414 | matchKey(s: string, options: ParseOptions): number | undefined { |
| 1415 | return this._match(isStringNumberRegExp, s, options) |
| 1416 | } |
| 1417 | /** @internal */ |
| 1418 | matchPart(s: string, options: ParseOptions): number | undefined { |
| 1419 | return this._match(isStringFiniteRegExp, s, options) |