Sign in
chromium
/
devtools
/
devtools-frontend
/
cd36e4781fe47164336d10bf800982a963bba8bd
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
hasLessInterpolation.js
blob: c8012aa716c0641f77b75c30c33df66acc373fd3 [
file
]
'use strict'
;
/**
* Check whether a string has less interpolation
*
* @param {string} string
* @return {boolean} If `true`, a string has less interpolation
*/
module
.
exports
=
function
(
string
)
{
return
/@\{.+?\}/
.
test
(
string
);
};