git ssb

1+

Daan Patchwork / patchwork



Tree: 486af00f56978c646ce40d45da2d63a8bb58f0dd

Files: 486af00f56978c646ce40d45da2d63a8bb58f0dd / lib / get-timestamp.js

261 bytesRaw
1module.exports = function (msg) {
2 if (!msg || !msg.value || !msg.value.timestamp) return
3 if (msg.rts) {
4 return msg.rts
5 } else if (msg.timestamp) {
6 return Math.min(msg.timestamp, msg.value.timestamp)
7 } else {
8 return msg.value.timestamp
9 }
10}
11

Built with git-ssb-web