git ssb

0+

wanderer🌟 / js-primea-hypervisor



Tree: 5069c93603388ea483de7c8c854b35783f6ec016

Files: 5069c93603388ea483de7c8c854b35783f6ec016 / common.js

277 bytesRaw
1const Message = require('primea-message')
2
3exports.PARENT = '..'
4exports.ROOT = '/'
5exports.getterMessage = (name, path) => {
6 const message = new Message({
7 data: {
8 getValue: name
9 },
10 sync: true
11 })
12 if (path) {
13 message.to = path
14 }
15 return message
16}
17

Built with git-ssb-web