aboutsummaryrefslogtreecommitdiff
path: root/node_modules/istanbul-reports/lib/text-lcov
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/istanbul-reports/lib/text-lcov')
-rw-r--r--node_modules/istanbul-reports/lib/text-lcov/index.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/istanbul-reports/lib/text-lcov/index.js b/node_modules/istanbul-reports/lib/text-lcov/index.js
new file mode 100644
index 0000000..847aedf
--- /dev/null
+++ b/node_modules/istanbul-reports/lib/text-lcov/index.js
@@ -0,0 +1,17 @@
+'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;