react-native-signalr
react-native-signalr copied to clipboard
$.param issue
It lacks of method $.param when I am using qs , and also I saw you guys added a commit in file signalr-jquery-polyfill.js, could you please release it first, thanks in advance. cors: true
+ },
+ param: (source) => {
+ let array = []
+ for(var key in source) {
+ array.push(encodeURIComponent(key) + "=" + encodeURIComponent(source[key]))
+ }
+ return array.join("&")
}
We need this too
It was addressed by latest version 1.0.6