stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
51 lines (38 loc) • 1.72 kB
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
;
const balancedMatch = require('balanced-match');
const valueParser = require('postcss-value-parser');
const validateTypes = require('./validateTypes.cjs');
/** @typedef {(expression: string, expressionIndex: number, funcNode: valueParser.FunctionNode, parsedValue: valueParser.ParsedValue) => void} Callback */
/**
* Search a CSS string for functions by name.
* For every match, invoke the callback, passing the function's
* "argument(s) string" (whatever is inside the parentheses)
* as an argument.
*
* Callback will be called once for every matching function found,
* with the function's "argument(s) string" and its starting index
* as the arguments.
*
* @param {string} source
* @param {string | RegExp} functionName
* @param {Callback} callback
* @returns {valueParser.ParsedValue}
*/
function functionArgumentsSearch(source, functionName, callback) {
const parsedValue = valueParser(source);
return parsedValue.walk((node) => {
if (node.type !== 'function') return;
const { value } = node;
if (validateTypes.isString(functionName) && value !== functionName) return;
if (validateTypes.isRegExp(functionName) && !functionName.test(node.value)) return;
const parensMatch = balancedMatch('(', ')', source.slice(node.sourceIndex));
validateTypes.assert(parensMatch);
const expression = parensMatch.body;
const parenLength = 1; // == '('
const expressionIndex = node.sourceIndex + value.length + parenLength;
callback(expression, expressionIndex, node, parsedValue);
});
}
module.exports = functionArgumentsSearch;