ssbc / ssb-msg-content

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ssb-msg-content

Take an ssb message object and grab just the content

Usage

var getContent = require('ssb-msg-content')

var content = getContent(msg)

where msg could be of form:

  • { key, value } - often provided by feed streams
  • { author, content, timestamp } - the raw value as provided by e.g. sbot.get
  • { type, ... } - you are already looking at the content!

outputs

{
  type: String,
  ...otherProps
}

About


Languages

Language:JavaScript 100.0%