feat: init
This commit is contained in:
26
node_modules/unenv/dist/runtime/node/internal/buffer/file.mjs
generated
vendored
Normal file
26
node_modules/unenv/dist/runtime/node/internal/buffer/file.mjs
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
export class File extends Blob {
|
||||
__unenv__ = true;
|
||||
size = 0;
|
||||
type = "";
|
||||
name = "";
|
||||
lastModified = 0;
|
||||
constructor(...args) {
|
||||
super(...args);
|
||||
throw new Error("[unenv] buffer.File is not implemented");
|
||||
}
|
||||
arrayBuffer() {
|
||||
throw new Error("Not implemented");
|
||||
}
|
||||
slice() {
|
||||
throw new Error("Not implemented");
|
||||
}
|
||||
text() {
|
||||
throw new Error("Not implemented");
|
||||
}
|
||||
stream() {
|
||||
throw new Error("Not implemented");
|
||||
}
|
||||
bytes() {
|
||||
throw new Error("Not implemented");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user