ohctechv3/.svn/pristine/16/16b21b0f5b2f8b4c88fbf66173cf451c6e7cb507.svn-base
2024-10-28 15:03:36 +05:30

17 lines
408 B
Plaintext

/**
* @fileoverview JSON reporter, including rules metadata
* @author Chris Meyer
*/
"use strict";
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
module.exports = function(results, data) {
return JSON.stringify({
results,
metadata: data
});
};