We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
undefined
Consider this:
bagpipes: some-flow: - some-fitting: key: false
When I play the pipe - I get the false of the ctx.input as undefined 😢
false
ctx.input
bug reproduction:
const bagpipes = require('bagpipes'); const pipes = bagpipes.create({ 'foo' : [ { emit: { bar: false } } ] } ); pipes.play( pipes.getPipe( 'foo' ) , ctx = {} ); if( ctx.output.bar !== false) throw new Error('oups. expected false, but got something else');
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider this:
When I play the pipe - I get the
false
of thectx.input
asundefined
😢bug reproduction:
Thanks
The text was updated successfully, but these errors were encountered: