mirror of
https://github.com/EDCD/coriolis-data.git
synced 2025-12-09 15:35:35 +00:00
13 lines
232 B
JavaScript
13 lines
232 B
JavaScript
'use strict';
|
|
module.exports = function (results, config) {
|
|
return JSON.stringify({
|
|
config: config,
|
|
results: results
|
|
}, function (key, val) {
|
|
// filter away the Esprima AST
|
|
if (key !== 'node') {
|
|
return val;
|
|
}
|
|
});
|
|
};
|