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.js14
1 files changed, 14 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 000000000..9aca61e66
--- /dev/null
+++ b/node_modules/istanbul-reports/lib/text-lcov/index.js
@@ -0,0 +1,14 @@
+/*
+ Copyright 2012-2015, Yahoo Inc.
+ Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
+ */
+var util = require('util'),
+ LcovOnly = require('../lcovonly');
+
+function TextLcov(opts) {
+ opts.file = '-';
+ LcovOnly.call(this, opts);
+}
+
+util.inherits(TextLcov, LcovOnly);
+module.exports = TextLcov;