npm.io
1.0.1 • Published 8 years ago

ssb-msg-content

Licence
MIT
Version
1.0.1
Deps
0
Size
1 kB
Vulns
0
Weekly
0
Stars
2

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
}