Skip to content

Commit

Permalink
Remove Windows line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Cohen committed Dec 10, 2015
1 parent 3271b54 commit ae877c6
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions scripts/http.js
@@ -1,16 +1,14 @@
'use strict';

const createHTTPServer = require('../src/index').createHTTPServer;
const port = 5990;
const serverUrl = 'wss://s1.ripple.com';


function main() {
const server = createHTTPServer({server: serverUrl}, port);
server.start().then(() => {
console.log('Server started on port ' + String(port));
});
}


main();
const createHTTPServer = require('../src/index').createHTTPServer;
const port = 5990;
const serverUrl = 'wss://s1.ripple.com';

function main() {
const server = createHTTPServer({server: serverUrl}, port);
server.start().then(() => {
console.log('Server started on port ' + String(port));
});
}

main();

0 comments on commit ae877c6

Please sign in to comment.