index.js 272 B

12345678910
  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 { ReportBase } = require('istanbul-lib-report');
  7. class NoneReport extends ReportBase {}
  8. module.exports = NoneReport;