Skip to content

Commit aa3b449

Browse files
committed
fix function call on map Access
1 parent b6bb83c commit aa3b449

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/javascript/lib/core/functions.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ function call_property(item, property) {
2525
throw new Error(`Property ${property} not found in ${item}`);
2626
}
2727

28-
if (item.get(prop) instanceof Function || typeof item.get(prop) === 'function') {
29-
return item.get(prop)();
30-
}
3128
return item.get(prop);
3229
}
3330

0 commit comments

Comments
 (0)