MCPcopy Create free account
hub / github.com/diffusionstudio/vits-web / FSNode

Function FSNode

src/piper.js:4112–4125  ·  view source on GitHub ↗
(parent, name, mode, rdev)

Source from the content-addressed store, hash-verified

4110 return ret;
4111 };
4112 var FSNode = function (parent, name, mode, rdev) {
4113 if (!parent) {
4114 parent = this;
4115 }
4116 this.parent = parent;
4117 this.mount = parent.mount;
4118 this.mounted = null;
4119 this.id = FS.nextInode++;
4120 this.name = name;
4121 this.mode = mode;
4122 this.node_ops = {};
4123 this.stream_ops = {};
4124 this.rdev = rdev;
4125 };
4126 var readMode = 292 | 73;
4127 var writeMode = 146;
4128 Object.defineProperties(FSNode.prototype, {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected