Skip to content

Commit

Permalink
fix: residual space after section causes bad parsing (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nautigsam committed Apr 12, 2023
1 parent b363ae6 commit 5b5c9b7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ini.js
Expand Up @@ -69,8 +69,8 @@ const decode = str => {
const out = Object.create(null)
let p = out
let section = null
// section |key = value
const re = /^\[([^\]]*)\]$|^([^=]+)(=(.*))?$/i
// section |key = value
const re = /^\[([^\]]*)\]\s*$|^([^=]+)(=(.*))?$/i
const lines = str.split(/[\r\n]+/g)

for (const line of lines) {
Expand Down
1 change: 1 addition & 0 deletions tap-snapshots/test/foo.js.test.cjs
Expand Up @@ -35,6 +35,7 @@ Null Object {
"three",
"this is included",
],
"b": Null Object {},
"br": "warm",
"eq": "eq=eq",
"false": false,
Expand Down
3 changes: 3 additions & 0 deletions test/fixtures/foo.ini
Expand Up @@ -69,6 +69,9 @@ j = "{ o: "p", a: { av: "a val", b: { c: { e: "this [value]" } } } }"
cr[] = four
cr[] = eight
; b section with a space after its title
[b]
; nested child without middle parent
; should create otherwise-empty a.b
[a.b.c]
Expand Down

0 comments on commit 5b5c9b7

Please sign in to comment.