git ssb

0+

wanderer🌟 / js-primea-hypervisor



Tree: 530ddd254210fc24ecf91434d349a5162a554763

Files: 530ddd254210fc24ecf91434d349a5162a554763 / common.js

295 bytesRaw
1const Message = require('./message')
2
3exports.PARENT = Symbol('parent')
4exports.ROOT = Symbol('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