UNPKG

@stylistic/stylelint-plugin

Version:
12 lines (10 loc) 246 B
const HAS_SCSS_INTERPOLATION = /#\{.+?\}/s /** * Check whether a string has scss interpolation * * @param {string} string * @returns {boolean} */ export function hasScssInterpolation (string) { return HAS_SCSS_INTERPOLATION.test(string) }