Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andstor/clover2lcov

Convert Clover reports to LCOV reports
https://github.com/andstor/clover2lcov

Last synced: 1 day ago
JSON representation

Convert Clover reports to LCOV reports

Awesome Lists containing this project

README

        

# clover2lcov
> Convert Clover reports to LCOV reports

## Install
```
$ npm install --save clover2lcov
```

## Usage
```js
const clover2lcov = require('clover2lcov');

clover2lcov.toLcov("clover.xml")
.then(function (result) {
console.log(result);
}).catch(function (err) {
console.error(err);
});
```

## License

Copyright © 2021 [André Storhaug](https://github.com/andstor)

clover2lcov is licensed under the [MIT License](https://github.com/andstor/clover2lcov/blob/master/LICENSE).