1 | /* | |
2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. | |
3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. | |
4 | */ | |
5 | ||
6 | 1 | var util = require('util'), |
7 | Report = require('./index'); | |
8 | ||
9 | 1 | function NoneReport() { |
10 | 1 | Report.call(this); |
11 | } | |
12 | ||
13 | 1 | NoneReport.TYPE = 'none'; |
14 | ||
15 | 1 | Report.mix(NoneReport, { |
16 | writeReport: function (collector, sync) { | |
17 | //noop | |
18 | } | |
19 | }); | |
20 | ||
21 | 1 | module.exports = NoneReport; |
22 |