process-result.js 300 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 let objectify = require('./objectifier') module.exports = function processResult(result) { if (console && console.warn) { result.warnings().forEach(warn => { let source = warn.plugin || 'PostCSS' console.warn(source + ': ' + warn.text) }) } return objectify(result.root) }