index.js 344 B

123456789101112131415
  1. /*
  2. Copyright 2012-2015, Yahoo Inc.
  3. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
  4. */
  5. var util = require('util'),
  6. 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;