1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-03 20:30:04 +02:00
This commit is contained in:
s2
2018-05-05 14:29:20 +02:00
parent 62dd054f83
commit d17c4fe70c
1809 changed files with 262593 additions and 219 deletions

14
node_modules/pn/stream.js generated vendored Normal file
View File

@@ -0,0 +1,14 @@
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
});