UNPKG

300 BJavaScriptView Raw
1// tooling
2import getReplacedString from './get-replaced-string';
3
4// transform generic at-rules
5export default function transformAtrule(rule, opts) {
6 // update the at-rule params with its variables replaced by their corresponding values
7 rule.params = getReplacedString(rule.params, rule, opts);
8}