Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
node_modules
/
stylelint-scss
/
dist
/
utils
/
hasScssInterpolation.js
blob: f6fa421c014b169171ddb199ba1889acd46cb7a4 [
file
] [
log
] [
blame
]
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
,
{
value
:
true
});
exports
[
"default"
]
=
_default
;
/**
* Check whether a string has scss interpolation
*
* @param {string} string
*/
function
_default
(
string
)
{
return
/#{.+?}/
.
test
(
string
);
}