Files
wechatpay-enterprise-web/node_modules/eslint/lib/cli-engine/formatters/json.js
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

14 lines
349 B
JavaScript

/**
* @fileoverview JSON reporter
* @author Burak Yigit Kaya aka BYK
*/
"use strict";
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
module.exports = function(results) {
return JSON.stringify(results);
};