mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
8131041701
* Refactor extension format and load plugins from directory * Added some UI around plugins * Refactor PromptModal usage
11 lines
215 B
JavaScript
11 lines
215 B
JavaScript
export default {
|
|
deprecated: true,
|
|
name: 'timestamp',
|
|
displayName: 'Timestamp',
|
|
description: 'generate timestamp in milliseconds',
|
|
defaultFill: 'timestamp',
|
|
run (context) {
|
|
return Date.now();
|
|
}
|
|
};
|