in src/bll/credentialsstore/osx/osx-keychain-parser.ts [83:95]
private collectProperties(line: string): void {
const match = this.propertiesMask.exec(line);
if (match) {
if (match[2]) {
const value = match[6] || match[4];
if (value) {
this.currentEntry[match[2]] = value;
}
}
} else {
this.finalize(line);
}
}