From 509f79e89f39915cb13e82bb847c0bb1d6a713fe Mon Sep 17 00:00:00 2001 From: kamiazya Date: Mon, 22 Apr 2024 00:30:18 +0900 Subject: [PATCH] Update documentation --- src/Lexer.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Lexer.ts b/src/Lexer.ts index 0c5798a2..59126e6e 100644 --- a/src/Lexer.ts +++ b/src/Lexer.ts @@ -5,7 +5,9 @@ import { COMMA, CRLF, DOUBLE_QUOTE, LF } from "./constants.ts"; import { escapeRegExp } from "./utils/escapeRegExp.ts"; /** - * Represents a lexer for parsing CSV data. + * CSV Lexer. + * + * Lexter tokenizes CSV data into fields and records. */ export class Lexer { #delimiter: string;