UNPKG

stylelint

Version:

A mighty, modern CSS linter.

11 lines (9 loc) 190 B
'use strict'; /** * Check whether a string has postcss-simple-vars interpolation * * @param {string} string */ module.exports = function (string) { return /\$\(.+?\)/.test(string); };