64d5e4703eb146525851cb03d2cc6acc76716791.svn-base 218 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 #!/usr/bin/env node var lcov = require('../lib/index.js'); var file = process.argv[2]; lcov(file, function(err, data) { if (err) { return console.error(err) } console.log(JSON.stringify(data)); });