-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added multiline value support * Updated escaping logic * More performance enhancements * More robusts test cases * Removed support for having two quote types instead it just supports a single quote and escape sequence.
- Loading branch information
1 parent
d007203
commit 7d230e8
Showing
23 changed files
with
507 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99998,4 +99998,4 @@ First1,Last1,[email protected], | |
,,, | ||
"First'1",Last1,[email protected],"1 Street St, State ST, 88888" | ||
"First""1",Last1,[email protected],"1 Street St, State ST, 88888" | ||
"First""1",Last1,[email protected],"1 Street St, State ST, 88888" | ||
"First""1",Last1,[email protected],"1 Street St, State ST, 88888" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -999998,4 +999998,4 @@ First1,Last1,[email protected], | |
First1,Last1,[email protected],"1 Street St, State ST, 88888" | ||
First1,Last1,[email protected],"1 ""Street"" St, State ST, 88888" | ||
First1,Last1,[email protected], | ||
,,, | ||
,,, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19998,4 +19998,4 @@ First1,Last1,[email protected], | |
"First'1",Last1,[email protected],"1 Street St, State ST, 88888" | ||
"First""1",Last1,[email protected],"1 Street St, State ST, 88888" | ||
"First""1",Last1,[email protected],"1 Street St, State ST, 88888" | ||
First1,Last1,[email protected],"1 Street St, State ST, 88888" | ||
First1,Last1,[email protected],"1 Street St, State ST, 88888" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49998,4 +49998,4 @@ First1,Last1,[email protected], | |
,,, | ||
"First'1",Last1,[email protected],"1 Street St, State ST, 88888" | ||
"First""1",Last1,[email protected],"1 Street St, State ST, 88888" | ||
"First""1",Last1,[email protected],"1 Street St, State ST, 88888" | ||
"First""1",Last1,[email protected],"1 Street St, State ST, 88888" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
module.exports = require("extended")().register(require("is-extended")).register(require("object-extended")).register(require("string-extended")); | ||
module.exports = require("extended")() | ||
.register(require("is-extended")) | ||
.register(require("object-extended")) | ||
.register(require("string-extended")) | ||
.register("LINE_BREAK", (process.platform === 'win32' ? '\r\n' : '\n')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.