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

Commit

Permalink
Allow parse.Options.escape to be null or false.
Browse files Browse the repository at this point in the history
The documentation specifies that you can set this value to `null` or `false` to disable escaping, but the types don't allow that.
  • Loading branch information
zkldi authored and wdavidw committed Apr 7, 2021
1 parent 0e94b34 commit 09602a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.d.ts
Expand Up @@ -102,7 +102,7 @@ declare namespace parse {
/**
* Set the escape character, one character only, defaults to double quotes.
*/
escape?: string | Buffer;
escape?: string | null | false | Buffer;
/**
* Start handling records from the requested number of records.
*/
Expand Down

0 comments on commit 09602a6

Please sign in to comment.