Skip to content

Commit

Permalink
fix: another ini mangling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilNarayana committed Oct 6, 2021
1 parent cec380e commit a7ee00d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dolphin/iniFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class IniFile {
retValueOut = line
.substring(firstEquals + 1)
.trim()
.replace(/['"]+/g, "");
.replace(/(^"|"$)/g, "");
}

return [keyOut, retValueOut] as const;
Expand Down

0 comments on commit a7ee00d

Please sign in to comment.