/
ai_sampletext
/
DiplomWork
Обзор
Документация
Войти
/
ai_sampletext
/
DiplomWork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/postcss-js/async.js
15 строк
358 B
boolyshareyo
Initial commit
08 июн 2026, 16:00
08 июн 2026, 16:00
6216a29
Код
Авторство
О чём код?
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) } }