Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
615 B
14 lines
615 B
1 year ago
|
var stream = require("stream");
|
||
|
var promisify = require("./_promisify.js");
|
||
|
var bind = function(c, f) { return f && f.bind(c); };
|
||
|
Object.defineProperties(module.exports, {
|
||
|
Duplex: { enumerable: true, value: stream.Duplex },
|
||
|
PassThrough: { enumerable: true, value: stream.PassThrough },
|
||
|
Readable: { enumerable: true, value: stream.Readable },
|
||
|
Stream: { enumerable: true, value: stream.Stream },
|
||
|
Transform: { enumerable: true, value: stream.Transform },
|
||
|
Writable: { enumerable: true, value: stream.Writable },
|
||
|
//_isUint8Array: // skipping
|
||
|
//_uint8ArrayToBuffer: // skipping
|
||
|
//super_: // skipping
|
||
|
});
|