git ssb

1+

Daan Patchwork / patchwork



Tree: 9b514132e92bd744e5003fc4f189a46ed5cdbf7e

Files: 9b514132e92bd744e5003fc4f189a46ed5cdbf7e / lib / get-bump.js

385 bytesRaw
1const extend = require('xtend')
2
3module.exports = function (msg, bumpFilter) {
4 if (bumpFilter) {
5 let bump = typeof bumpFilter === 'function' ? bumpFilter(msg) : bumpFilter
6 if (bump) {
7 if (typeof bump === 'string') bump = { type: bump }
8 return extend({
9 id: msg.key,
10 author: msg.value.author
11 }, bump instanceof Object ? bump : {})
12 }
13 }
14}
15

Built with git-ssb-web