git ssb

7+

dinoworm ๐Ÿ› / patchcore



Tree: 1c0ca68774c4b8604b4acc3288982a21f90f8401

Files: 1c0ca68774c4b8604b4acc3288982a21f90f8401 / feed / pull / public.js

388 bytesRaw
1const nest = require('depnest')
2
3exports.gives = nest('feed.pull.public')
4exports.needs = nest('sbot.pull.feed', 'first')
5exports.create = function (api) {
6 return nest('feed.pull.public', (opts) => {
7 // handle last item passed in as lt
8 opts.lt = (opts.lt && typeof opts.lt === 'object')
9 ? opts.lt.value.timestamp
10 : opts.lt
11 return api.sbot.pull.feed(opts)
12 })
13}
14

Built with git-ssb-web