pipr.tools
Pipes
Clean Email Strip formatting from pasted email for clean plain text Clean AI Output Clean plain text from ChatGPT or AI output Decode & Format JWT Decode a JWT and pretty-print header and payload Word Frequency Count word frequency in text

timestamp Get current Unix timestamp and ISO date

⚡ Gen
Input0 chars
Output0 chars

Examples

Show current Unix timestamp and ISO date

Usage
"" | timestamp

Get the current time for debugging an API request

Usage
"" | timestamp

Generate a timestamp for a manual log entry

Usage
"" | timestamp
View source
()=>{
                const now = new Date();
                return `Unix:  ${Math.floor(now.getTime() / 1000)}\nISO:   ${now.toISOString()}\nLocal: ${now.toLocaleString()}`;
            }

Related Tools