source: trip-planner-front/node_modules/istanbul-reports/lib/text-lcov/index.js@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 354 bytes
Line 
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 */
6const LcovOnly = require('../lcovonly');
7
8class TextLcov extends LcovOnly {
9 constructor(opts) {
10 super({
11 ...opts,
12 file: '-'
13 });
14 }
15}
16
17module.exports = TextLcov;
Note: See TracBrowser for help on using the repository browser.