blob: 849de3196c4368233b5093ea684dda74ad5876fa [file] [log] [blame]
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = _default;
/**
* Check whether a string has postcss-simple-vars interpolation
*
* @param {string} string
*/
function _default(string) {
return /\$\(.+?\)/.test(string);
}