Skip to content

Commit

Permalink
style: Change anonymous function
Browse files Browse the repository at this point in the history
  • Loading branch information
davidparsson committed Jun 16, 2024
1 parent 9da4106 commit 013e918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test_node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export abstract class TestNode {
protected buildNode(element: XMLElement): XMLElement {
if (this._properties.length) {
var propertiesElement = element.ele('properties');
_.forEach(this._properties, function (property) {
_.forEach(this._properties, (property: any) => {
propertiesElement.ele('property', {
name: property.name,
value: property.value,
Expand Down

0 comments on commit 013e918

Please sign in to comment.