mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 12:05:32 +00:00
15 lines
381 B
JavaScript
15 lines
381 B
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
|
|
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
|
'use strict';
|
|
|
|
/**
|
|
* @param {string} source
|
|
* @param {string} [blurChar]
|
|
* @returns {string}
|
|
*/
|
|
function blurInterpolation(source, blurChar = ' ') {
|
|
return source.replace(/[#@{}]+/g, blurChar);
|
|
}
|
|
|
|
module.exports = blurInterpolation;
|