版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

18 строки
354 B

  1. 'use strict';
  2. /*
  3. Copyright 2012-2015, Yahoo Inc.
  4. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
  5. */
  6. const LcovOnly = require('../lcovonly');
  7. class TextLcov extends LcovOnly {
  8. constructor(opts) {
  9. super({
  10. ...opts,
  11. file: '-'
  12. });
  13. }
  14. }
  15. module.exports = TextLcov;