odin-default-js-exercises/node_modules/eslint/lib/formatters/json.js

14 lines
349 B
JavaScript
Raw Normal View History

2017-12-15 18:56:14 +00:00
/**
* @fileoverview JSON reporter
* @author Burak Yigit Kaya aka BYK
*/
"use strict";
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
module.exports = function(results) {
return JSON.stringify(results);
};