UNPKG

nu-html-checker

Version:

A CLI interface for the Nu HTML Checker (https://validator.nu/)

12 lines (9 loc) 211 B
/** * Pipes the original result into a pretty-formatted JSON string. * * @param {Object} results * @returns {String} */ module.exports = function (results) { return JSON.stringify(results, null, 2); };