Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import React, { Component, PropTypes } from 'react'
import { Platform } from 'react-native';
import ActionCable from 'actioncable'
ActionCable.getConfig = () => null
ActionCable.createWebSocketURL = (url) => url.replace(/^http/, 'ws')
const oldOpen = ActionCable.Connection.prototype.open
ActionCable.Connection.prototype.open = function () {
const result = oldOpen.apply(this)
this.webSocket.protocol = 'actioncable-v1-json'
return result
}
if(Platform.OS == 'ios' || Platform.OS == 'android'){
global.document = {
addEventListener () {},
removeEventListener () {}
}
}
export default ActionCable