mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 07:08:16 -04:00
* Fixed duplication kve bug * Some changes * Add proptypes linting * Fixed proptypes even more * Filename linting
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
import BaseExtension from './base/base-extension';
|
|
|
|
export default class TimestampExtension extends BaseExtension {
|
|
constructor () {
|
|
super();
|
|
this.tags = ['timestamp'];
|
|
}
|
|
|
|
run (context) {
|
|
return Date.now();
|
|
}
|
|
}
|