@kpi4me/golden-layout
Version:
A multi-screen javascript Layout manager https://golden-layout.com
21 lines (15 loc) • 399 B
JavaScript
/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
*/
var Report = require('./index');
function NoneReport() {
Report.call(this);
}
NoneReport.TYPE = 'none';
Report.mix(NoneReport, {
writeReport: function (/* collector, sync */) {
//noop
}
});
module.exports = NoneReport;