UNPKG
whatwg-streams-impl
Version:
latest (1.0.0)
1.0.0
WHATWG Streams Implementation for Node.JS
github.com/mpotra/whatwg-streams/
mpotra/whatwg-streams
whatwg-streams-impl
/
lib
/
readable
/
ReadableByteStreamController.js
10 lines
(7 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
console
.
warn
(
'NOT_IMPLEMENTED: ReadableByteStreamController not implemented'
);
class
ReadableByteStreamController
{
constructor
(
) {
throw
new
TypeError
(
'Cannot call constructor on ReadableByteStreamController'
); } }
module
.
exports
=
ReadableByteStreamController
;