Cleanup & Fix lint issues

This commit is contained in:
Jan Oberhauser
2021-03-29 11:20:10 +02:00
parent e48f555f07
commit ca50194d71
7 changed files with 25 additions and 25 deletions

View File

@@ -45,7 +45,7 @@ export class ReadPdf implements INodeType {
let item: INodeExecutionData;
for (let itemIndex = 0; itemIndex < length; itemIndex++) {
item = items[itemIndex];
const binaryPropertyName = this.getNodeParameter('binaryPropertyName', itemIndex) as string;
@@ -58,7 +58,7 @@ export class ReadPdf implements INodeType {
binary: item.binary,
json: await pdf(binaryData),
});
}
return this.prepareOutputData(returnData);
}