internet-programming/lab3/node_modules/eslint/lib/cli-engine/formatters/json.js

14 lines
349 B
JavaScript
Raw Normal View History

2023-11-02 02:38:40 +04:00
/**
* @fileoverview JSON reporter
* @author Burak Yigit Kaya aka BYK
*/
"use strict";
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
module.exports = function(results) {
return JSON.stringify(results);
};