UNPKG

190 BJavaScriptView Raw
1'use strict';
2
3/**
4 * Check whether a string has postcss-simple-vars interpolation
5 *
6 * @param {string} string
7 */
8module.exports = function (string) {
9 return /\$\(.+?\)/.test(string);
10};