(data)
| 1585 | , options = this.options; |
| 1586 | |
| 1587 | function complete (data) { |
| 1588 | if (data instanceof Error) { |
| 1589 | self.onError(data.message); |
| 1590 | } else { |
| 1591 | fn.apply(null, data.split(':')); |
| 1592 | } |
| 1593 | }; |
| 1594 | |
| 1595 | var url = [ |
| 1596 | 'http' + (options.secure ? 's' : '') + ':/' |
no test coverage detected