.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / hasPsvInterpolation.js
1 /* @flow */
2 "use strict";
3
4 /**
5  * Check whether a string has postcss-simple-vars interpolation
6  */
7 module.exports = function(string /*: string*/) /*: boolean*/ {
8   if (/\$\(.+?\)/.test(string)) {
9     return true;
10   }
11
12   return false;
13 };