CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
process-result.js12 linesDownload Raw Back to postcss-js
1let objectify = require('./objectifier')2 3module.exports = function processResult(result) {4  if (console && console.warn) {5    result.warnings().forEach(warn => {6      let source = warn.plugin || 'PostCSS'7      console.warn(source + ': ' + warn.text)8    })9  }10  return objectify(result.root)11}12