(options)
| 90 | } |
| 91 | |
| 92 | function configureAddress(options) { |
| 93 | if (!options.address) { |
| 94 | if (options.production) { |
| 95 | options.address = EndpointAddress.production; |
| 96 | } |
| 97 | else { |
| 98 | options.address = EndpointAddress.development; |
| 99 | } |
| 100 | } |
| 101 | else { |
| 102 | if (options.address === EndpointAddress.production) { |
| 103 | options.production = true; |
| 104 | } |
| 105 | else { |
| 106 | options.production = false; |
| 107 | } |
| 108 | } |
| 109 | }; |
no outgoing calls
no test coverage detected
searching dependent graphs…