UNPKG

@stylistic/stylelint-plugin

Version:
12 lines (10 loc) 258 B
const HAS_PSV_INTERPOLATION = /\$\(.+?\)/ /** * Check whether a string has postcss-simple-vars interpolation * * @param {string} string * @returns {boolean} */ export function hasPsvInterpolation (string) { return HAS_PSV_INTERPOLATION.test(string) }