fix: urlencoded form evaluation issues

This commit is contained in:
Andrew Bastin
2022-01-19 23:11:26 +05:30
parent 0efbc58b26
commit 09269b3cec
6 changed files with 58 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
/**
* Logs the current value and returns the same value
* @param x The value to log
* @returns The parameter `x` passed to this
*/
export const trace = <T>(x: T) => {
console.log(x)
return x
}