Skip to content

Commit ebaa0b4

Browse files
author
Benjamin Forster
committed
remove console log and add lint check to travis
1 parent 5f97aed commit ebaa0b4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ var randomAccessHttp = function (filename, options) {
4040
// should cache this
4141
_axios.head(file)
4242
.then((response) => {
43-
console.log(_axios);
4443
if (verbose) logger.log('Received headers from server')
4544
var accepts = response.headers['accept-ranges']
4645
if (accepts && accepts.toLowerCase().indexOf('bytes') !== -1) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"test": "standard && tape tests/**.test.js",
8-
"test-travis": "nyc tape tests/**.test.js | tap-spec",
8+
"test-travis": "standard && nyc tape tests/**.test.js | tap-spec",
99
"tdd": "tape-watch tests/**.test.js",
1010
"report-coverage": "nyc report --reporter=text-lcov | coveralls"
1111
},

0 commit comments

Comments
 (0)