dotpath-stream

2.0.1 • Public • Published

dotpath-stream

Build Status npm install

transform object streams by dotpath lookup

usage

var dps = require('dotpath-stream')
  , imaginaryObjectStream
 
// pretend imaginaryObjectStream streams an object like:
//
// {
//     file: {name: 'filename'}
//   , blah: 'bleh'
// }
 
imaginaryObjectStream.pipe(dps('file.name')).pipe(process.stdout)
// => 'filename'
imaginaryObjectStream.pipe(dps('blah')).pipe(process.stdout)
// => 'bleh'

API

dps(dotPath, _fallback) -> TransformStream

Looks up dotPath property on whatever object is written to it and streams result. In the event of that property being absent or otherwise undefined, fallback is streamed instead if provided.

license

MIT

Package Sidebar

Install

npm i dotpath-stream

Weekly Downloads

1

Version

2.0.1

License

MIT

Last publish

Collaborators

  • jarofghosts