Comment by zahlman

Comment by zahlman 5 hours ago

1 reply

> If you gave this to jsonriver one byte at a time it would yield this sequence of values:

Does it create a new value each time, or just mutate the existing one and keep yielding it?

rictic 5 hours ago

It mutates the existing value and yields it again (unless the toplevel value is a string, because strings are immutable in JS).