JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "async.js"
Full Path: /home/u703019046/domains/nawabs.com.au/public_html/node_modules/postcss-js/async.js
File size: 358 bytes
MIME-type: text/x-Algol68
Charset: utf-8
let postcss = require('postcss')
let processResult = require('./process-result')
let parse = require('./parser')
module.exports = function async(plugins) {
let processor = postcss(plugins)
return async input => {
let result = await processor.process(input, {
parser: parse,
from: undefined
})
return processResult(result)
}
}