mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @param {string} source
|
|
*
|
|
* @returns {string}
|
|
*/
|
|
module.exports = function blurInterpolation(source, blurChar = ' ') {
|
|
return source.replace(/[#@{}]+/g, blurChar);
|
|
};
|