Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/chromium/4367
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
hasScssInterpolation.js
blob: 488c1300d96393484f58b46cc35557ee4323e148 [
file
] [
edit
]
'use strict'
;
/**
* Check whether a string has scss interpolation
*
* @param {string} string
*/
module
.
exports
=
function
(
string
)
{
return
/#{.+?}/
.
test
(
string
);
};