Sign in
chromium
/
devtools
/
devtools-frontend
/
0a3621c
/
.
/
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
);
};