Detalhes do pacote

golang-cover-parse

vokal14.1kMIT2.0.0

Parse Go coverage to JavaSript object, based on output from lcov-parse

readme (leia-me)

golang-cover-parse

Parse Go cover results file to JavaScript Object

The output is based on, and intended to be compatible with, https://github.com/davglass/lcov-parse

Also see:

Use

var gocov = require( "golang-cover-parse" );

// parse by file path
gocov.parseFile( "filepath.out", function( err, result ) { ... } );

// or parse file contents
gocov.parseContent( "...",
    function( err, result ) { ... } );

changelog (log de mudanças)

History

1.0.1 / 9-11-2015

  • Remove unused dependency xml2js
  • Process all mode: sections (updated test data)

1.0.0 / 9-10-2015

  • Initial version