`WritableStream` can NOT be use

hey, as title said, I can not use WritableStream in cell.

Hi Kindy,

The quick answer is: you can use WritableStream by referring to it as window.WritableStream

Cells are statically checked for references, so, as you noticed, globals that we don’t recognize won’t resolve, even if your browser supports them. The rough rule that we’re following is that at least the last version of Safari, Chrome, and Firefox must support a certain feature for it to be resolved.

WritableStream is only supported in Chrome right now (2018-3-2), and not supported at all in Safari or Firefox, so we don’t list it yet.

  • Tom