insomnia/app/templating/extensions/timestamp-extension.js
Gregory Schier fd7a25e1ac New 'request' tag and a lot of improvements (#296)
* New 'request' tag and a lot of improvements

* Update request extension to render all values

* Custom value of tag editor now inherits current
2017-06-08 18:10:12 -07:00

10 lines
187 B
JavaScript

export default {
deprecated: true,
name: 'timestamp',
displayName: 'Timestamp',
description: 'generate timestamp in milliseconds',
run (context) {
return Date.now();
}
};