Urara-Blog/node_modules/.pnpm-store/v3/files/6e/d3569a2ef558a6f258c733dead7556647ca9d9f93d574afb6c736518933b3db4aec57afecb2c6080fcf5685377e63c56b9ee751245228b6ecffc78a25eff4a
2022-08-14 01:14:53 +08:00

13 lines
349 B
Text

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