(method, url, done)
| 264 | } |
| 265 | |
| 266 | function sendURL(method, url, done) { |
| 267 | fetch(url.toString(), {method: method}) |
| 268 | .then((response) => { done(response.ok); }) |
| 269 | .catch((error) => { done(false); }); |
| 270 | } |
| 271 | |
| 272 | // Initialize handlers for saving/loading configurations. |
| 273 | function initConfigManager() { |
no test coverage detected
searching dependent graphs…