Sign in
chromium
/
devtools
/
devtools-frontend
/
ec00a13ce62ddc9f5697a4e4d30dfcafaacd9fc2
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
hasPsvInterpolation.js
blob: 5b3e58979e0718f22559a42c03b8caa1837da782 [
file
]
'use strict'
;
/**
* Check whether a string has postcss-simple-vars interpolation
*
* @param {string} string
*/
module
.
exports
=
function
(
string
)
{
return
/\$\(.+?\)/
.
test
(
string
);
};