UNPKG

bagpipes

Version:

Less code, more flow. Let's dance!

15 lines (10 loc) 278 B
'use strict'; var debug = require('debug')('pipes'); var JSPath = require('jspath'); module.exports = function create() { return function path(context, cb) { var input = context.input; var output = JSPath.apply(input, context.output); cb(null, output); } };