Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<script>
let a = new AbortController()
a.abort()
let b = new File(['ó ¬a'], 'a', {})
let c = new WritableStream()
b.stream().tee()[0].pipeTo(c, { 'signal': a.signal })
</script>