相关资料

代码实现

const stylus = require('stylus')

module.exports = function (source) {
  stylus(source)
    .render((err, css) => {
      this.callback(err, css)
    })
}