Skip to content
Snippets Groups Projects
Commit acf0ee15 authored by Steve Reis's avatar Steve Reis
Browse files

fix: Issue with 'has' function in engine service

parent 5188719e
No related branches found
No related tags found
No related merge requests found
...@@ -208,6 +208,6 @@ export default class EngineService implements Connector { ...@@ -208,6 +208,6 @@ export default class EngineService implements Connector {
} }
has(name: keyof Connector): boolean { has(name: keyof Connector): boolean {
return this.connector && typeof this.connector[name] !== undefined; return this.connector && this.connector[name] !== undefined;
} }
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment