git ssb

1+

Daan Patchwork / patchwork



Tree: 612509945be4d8cb719d3b0a5a0390a0ddbcf911

Files: 612509945be4d8cb719d3b0a5a0390a0ddbcf911 / 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