@splitsoftware/splitio-commons
Version:
Split JavaScript SDK common components
9 lines (8 loc) • 331 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getEventSource = void 0;
function getEventSource() {
// eslint-disable-next-line no-undef -- Feature detection for EventSource
return typeof EventSource === 'function' ? EventSource : undefined;
}
exports.getEventSource = getEventSource;