Skip to content
This repository was archived by the owner on Jun 28, 2021. It is now read-only.

Commit 09602a6

Browse files
zkldiwdavidw
authored andcommitted
Allow parse.Options.escape to be null or false.
The documentation specifies that you can set this value to `null` or `false` to disable escaping, but the types don't allow that.
1 parent 0e94b34 commit 09602a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ declare namespace parse {
102102
/**
103103
* Set the escape character, one character only, defaults to double quotes.
104104
*/
105-
escape?: string | Buffer;
105+
escape?: string | null | false | Buffer;
106106
/**
107107
* Start handling records from the requested number of records.
108108
*/

0 commit comments

Comments
 (0)