(url, msg)
| 59 | }; |
| 60 | |
| 61 | async function sendChatMsg(url, msg) { |
| 62 | const res = await request(url, { |
| 63 | resolveWithFullResponse: true, |
| 64 | method: 'POST', |
| 65 | json: true, |
| 66 | body: {text: msg}, |
| 67 | }); |
| 68 | } |
| 69 | |
| 70 | module.exports.sync_reactnative = sync_reactnative; |
no outgoing calls
no test coverage detected
searching dependent graphs…