mirror of
https://github.com/Azure/k8s-set-context.git
synced 2026-06-24 15:59:27 +08:00
52d71d28bd
Co-authored-by: Oliver King <oking3@uncc.edu>
11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
'use strict';
|
|
/*
|
|
Copyright 2012-2015, Yahoo Inc.
|
|
Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
|
|
*/
|
|
const { ReportBase } = require('istanbul-lib-report');
|
|
|
|
class NoneReport extends ReportBase {}
|
|
|
|
module.exports = NoneReport;
|