blob: 5b3e58979e0718f22559a42c03b8caa1837da782 [file] [log] [blame]
'use strict';
/**
* Check whether a string has postcss-simple-vars interpolation
*
* @param {string} string
*/
module.exports = function (string) {
return /\$\(.+?\)/.test(string);
};