(err)
| 64 | } |
| 65 | |
| 66 | function done (err) { |
| 67 | if (err) { |
| 68 | console.log(err, err.stack); |
| 69 | return process.exit(1); |
| 70 | } |
| 71 | server.close(); |
| 72 | process.exit(); |
| 73 | } |
| 74 | |
| 75 | // Don't worry about this. It's just a localhost file server so you can be |
| 76 | // certain the "remote" feed is available when you run this example. |
no outgoing calls
no test coverage detected