Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/chromium/4580
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
hasLessInterpolation.js
blob: b3afa83e23fe58e2e0d6d17b8bc704652f9a0bbf [
file
] [
edit
]
'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
);
};