(options)
| 528 | } |
| 529 | |
| 530 | function send_request(options) { |
| 531 | return new Promise((resolve, reject) => { |
| 532 | $task.fetch(options).then(response => { |
| 533 | resolve(options.method == "GET" ? response.body : JSON.parse(response.body)) |
| 534 | }) |
| 535 | }) |
| 536 | } |
| 537 | |
| 538 | function groupAgain(data, num) { |
| 539 | var result = [] |
no outgoing calls
no test coverage detected