UNPKG

210 BJavaScriptView Raw
1/**
2 * Check whether a string has postcss-simple-vars interpolation
3 */
4module.exports = function (string /*: string */) /*: boolean */ {
5 if (/\$\(.+?\)/.test(string)) {
6 return true
7 }
8
9 return false
10}