UNPKG
echo-fecs
Version:
latest (2.0.1)
2.0.1
2.0.0
1.0.0
Front End Code Style Suite
echo-fecs
/
lib
/
formatter
/
json.js
9 lines
(7 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
/** *
@file
JSON formatter for check results *
@author
chris<wfsr
@foxmail
.com> */
module
.
exports
=
function
(
json
) { process.
stdout
.
write
(
JSON
.
stringify
(json) +
'\n'
); };