web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
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;