Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
hasScssInterpolation.js
blob: ce80eb79df44e0d3cee45d21eec7ab2b96ce0be1 [
file
] [
log
] [
blame
]
'use strict'
;
/**
* Check whether a string has scss interpolation
*
* @param {string} string
*/
module
.
exports
=
function
(
string
)
{
return
/#\{.+?\}/
.
test
(
string
);
};