async function()

in nodes/YouTrack/resources/command/execute.ts [76:84]


							async function (this, requestOptions) {
								const comment = this.getNodeParameter('additionalOptions.comment') as string;
								const normalizedComment = normalizeComment(comment);
								
								if (normalizedComment && requestOptions.body && typeof requestOptions.body === 'object') {
									(requestOptions.body as CommandExecuteRequestBody).comment = normalizedComment;
								}
								return requestOptions;
							},