git ssb

1+

Daan Patchwork / patchwork



Tree: 455af00799601cb57c6ea54edad5e85c516b799f

Files: 455af00799601cb57c6ea54edad5e85c516b799f / 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