Skip to content

Commit

Permalink
fix flow
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuvalke committed Mar 10, 2021
1 parent 4ab623e commit c9eb836
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/engines/engine-decorator.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class EngineDecorator extends FakeEventTarget implements IEngineDecorator {
} else {
target = activeDecorator && prop in activeDecorator ? activeDecorator : obj;
}
// $FlowFixMe
return typeof target[prop].bind === 'function' ? target[prop].bind(target) : target[prop];
},
set: (obj, prop, value) => {
Expand Down

0 comments on commit c9eb836

Please sign in to comment.