index.js 348 B

1234567891011121314
  1. /*
  2. Copyright 2012-2015, Yahoo Inc.
  3. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
  4. */
  5. const util = require('util');
  6. const LcovOnly = require('../lcovonly');
  7. function TextLcov(opts) {
  8. opts.file = '-';
  9. LcovOnly.call(this, opts);
  10. }
  11. util.inherits(TextLcov, LcovOnly);
  12. module.exports = TextLcov;