mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 19:39:29 +08:00
13 lines
349 B
Text
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);
|
|
};
|