mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
fd7a25e1ac
* New 'request' tag and a lot of improvements * Update request extension to render all values * Custom value of tag editor now inherits current
10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
export default {
|
|
deprecated: true,
|
|
name: 'timestamp',
|
|
displayName: 'Timestamp',
|
|
description: 'generate timestamp in milliseconds',
|
|
run (context) {
|
|
return Date.now();
|
|
}
|
|
};
|