.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / blurComments.js
1 /* @flow */
2 "use strict";
3 module.exports = function(source /*: string*/) /*: string*/ {
4   const blurChar /*: string*/ =
5     arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "`";
6
7   return source.replace(/\/\*.*\*\//g, blurChar);
8 };