4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-09 22:16:56 +00:00
setup-helm/node_modules/istanbul-reports/lib/text-lcov/index.js
2022-01-26 21:54:27 +00:00

17 lines
354 B
JavaScript

'use strict';
/*
Copyright 2012-2015, Yahoo Inc.
Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
*/
const LcovOnly = require('../lcovonly');
class TextLcov extends LcovOnly {
constructor(opts) {
super({
...opts,
file: '-'
});
}
}
module.exports = TextLcov;