mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
module.exports = cmdSerializer;
|
|
|
|
// istanbul ignore next
|
|
function cmdSerializer(cmd) {
|
|
return cmd.replace(/https:\/\/[^@]*@/g, 'https://**redacted**@');
|
|
}
|