Files
hoppscotch/packages/hoppscotch-app/helpers/functional/debug.ts
2022-01-21 18:23:15 +05:30

10 lines
201 B
TypeScript

/**
* 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
}