1.0.1 • Published 6 years ago

ssb-msg-content v1.0.1

Weekly downloads
621
License
MIT
Repository
github
Last release
6 years ago

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
}