fix: curl parser url sanitisation (#2366)

This commit is contained in:
kyteinsky
2022-05-27 14:48:33 +05:30
committed by GitHub
parent b1a2c9e9d5
commit 83bdd03f43
6 changed files with 110 additions and 34 deletions

View File

@@ -17,6 +17,6 @@ export const trace = <T>(x: T) => {
export const namedTrace =
(name: string) =>
<T>(x: T) => {
console.log(`${name}: `, x)
console.log(`${name}:`, x)
return x
}