UNPKG

178 BJavaScriptView Raw
1'use strict';
2
3/**
4 * @param {string} source
5 *
6 * @returns {string}
7 */
8module.exports = function (source, blurChar = '`') {
9 return source.replace(/\/\*.*\*\//g, blurChar);
10};