Coder Social home page Coder Social logo

Comments (4)

missinglink avatar missinglink commented on April 28, 2024

@rvagg, @isaacs I'm happy to look in to this and submit a PR.

Can you please confirm that sending stream.write(undefined), stream.write(null) and calling stream.end() should all end a Transform stream in the same way?

Is this the same behaviour for objectMode:true and objectMode:false?

ref: https://github.com/isaacs/readable-stream/blob/master/test/simple/test-stream2-transform.js#L453

from node.

chrisdickinson avatar chrisdickinson commented on April 28, 2024

Can you please confirm that sending stream.write(undefined), stream.write(null) and calling stream.end() should all end a Transform stream in the same way?

stream.write(null | undefined) should not end a stream -- the null EOF is only triggered through the readable's internal_-ish_ .push method.

It's down to this line -- specifically the isNull check. This sits at a weird place on the "bug or normal behavior" spectrum: without the check, all of the tests still pass, and in objectMode one would expect any value written to the stream to be transformed, but as it stands, in most cases null is an "out of alphabet" value for streams and represents the end of a stream.

(Tangentially, I'd love to move away from null-as-EOF in the future for this (and other) reasons.)

from node.

sonewman avatar sonewman commented on April 28, 2024

I agree since it always feels weird to me calling .push(null) when ending a readable stream.

from node.

Qard avatar Qard commented on April 28, 2024

I'm closing this as the question was answered and there doesn't appear to be anything else immediately actionable here. Please feel free to re-open it if you disagree.

from node.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.