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