Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
blurInterpolation.js
blob: ff6dee89d2a2eec0afdc45cc68ed3a4f5da6729a [
file
] [
log
] [
blame
]
'use strict'
;
/**
* @param {string} source
*
* @returns {string}
*/
module
.
exports
=
function
(
source
,
blurChar
=
' '
)
{
return
source
.
replace
(
/[#@{}]+/
g
,
blurChar
);
};