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