/
d.gorschkov
/
Apex
Обзор
Документация
Войти
/
d.gorschkov
/
Apex
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/tailwindcss/src/util/createPlugin.js
27 строк
703 B
DmitriyGorshkovstar
first_commit
20 янв 2026, 19:38
20 янв 2026, 19:38
21d2719
Код
Авторство
О чём код?
function createPlugin(plugin, config) { return { handler: plugin, config, } } createPlugin.withOptions = function (pluginFunction, configFunction = () => ({})) { const optionsFunction = function (options) { return { __options: options, handler: pluginFunction(options), config: configFunction(options), } } optionsFunction.__isOptionsFunction = true // Expose plugin dependencies so that `object-hash` returns a different // value if anything here changes, to ensure a rebuild is triggered. optionsFunction.__pluginFunction = pluginFunction optionsFunction.__configFunction = configFunction return optionsFunction } export default createPlugin