Comparing version 0.0.54 to 0.0.55
@@ -1059,3 +1059,3 @@ "use strict"; | ||
skipWsAndComments(parser); | ||
const keyword = acceptKeyword(parser, "group"); | ||
const keyword = acceptKeyword(parser, /^group\b/); | ||
if (!keyword) { | ||
@@ -1062,0 +1062,0 @@ parser.loc = loc; |
import { EventEmitter } from "../runtime/async/event-emitter"; | ||
export interface RecursiveDescentParser<T = unknown> extends EventEmitter<T> { | ||
export interface RecursiveDescentParser<T extends Record<string, any> = any> extends EventEmitter<T> { | ||
readonly input: string; | ||
@@ -28,3 +28,3 @@ loc: number; | ||
export declare const eof: unique symbol; | ||
export declare function createRecursiveDescentParser<T = unknown>(input: string, config?: Partial<RecursiveDescentParserConfig>): RecursiveDescentParser<T>; | ||
export declare function createRecursiveDescentParser<T extends Record<string, any> = any>(input: string, config?: Partial<RecursiveDescentParserConfig>): RecursiveDescentParser<T>; | ||
export declare class SyntaxError extends Error { | ||
@@ -31,0 +31,0 @@ parser: RecursiveDescentParser; |
{ | ||
"name": "pbkit", | ||
"version": "0.0.54", | ||
"version": "0.0.55", | ||
"author": "JongChan Choi <jong@chan.moe>", | ||
@@ -5,0 +5,0 @@ "license": "(MIT OR Apache-2.0)", |
@@ -88,4 +88,6 @@ <div align="center"> | ||
- [Riiid][riiid] - Pbkit was originally created to use protobuf in Riiid. | ||
- [Karrot][당근마켓] - Use Pbkit to generate gRPC client used in Node.js servers. | ||
[riiid]: https://riiid.com/ | ||
[당근마켓]: https://team.daangn.com/ | ||
@@ -92,0 +94,0 @@ ### Open source project |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9741690
108