Readme

console.log (an optional message and) a value and return the value.

1
2
3
4
export function debug<T>(value: T, message?: string): T {
message ? console.log(message, value) : console.log(value);
return value;
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
v3
October 23, 2023