Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/andstor/clover2lcov
- Owner: andstor
- License: mit
- Created: 2021-02-03T22:26:59.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-09T02:26:19.000Z (almost 4 years ago)
- Last Synced: 2024-10-11T18:09:03.283Z (about 1 month ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).