canonical
Version:
Canonical code style linter and formatter for JavaScript, SCSS, CSS and JSON.
15 lines (12 loc) • 407 B
JavaScript
/**
* @fileoverview JSON reporter
* @author Burak Yigit Kaya aka BYK
* @copyright 2015 Burak Yigit Kaya. All rights reserved.
*/
;
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
module.exports = function(results) {
return JSON.stringify(results);
};