dotpath-stream

transform object streams by dotpath

Usage no npm install needed!

<script type="module">
  import dotpathStream from 'https://cdn.skypack.dev/dotpath-stream';
</script>

README

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