Sign in
chromium
/
devtools
/
devtools-frontend
/
b437fe8b27a8eeced6bc5b20152a96d1cd8564c8
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
hasLessInterpolation.js
blob: b3afa83e23fe58e2e0d6d17b8bc704652f9a0bbf [
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
);
};