We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bfc7b8 commit d8bdf33Copy full SHA for d8bdf33
2 files changed
sdk/platform/getEventSource/index.js
@@ -16,6 +16,7 @@ function getEventSource() {
16
return __isCustom ? __eventSource : require('./eventsource.js');
17
} catch (error) {
18
console.error(error);
19
+ // eslint-disable-next-line no-undef
20
return typeof EventSource === 'function' ? EventSource : undefined;
21
}
22
sdk/platform/getOptions/index.js
@@ -18,7 +18,7 @@ function getOptions(settings) {
if (find(settings.urls, url => !url.startsWith('https:'))) return;
return {
- agent
+ agent,
};
23
24
0 commit comments