feat: init
This commit is contained in:
15
node_modules/unenv/dist/runtime/node/internal/vm/script.mjs
generated
vendored
Normal file
15
node_modules/unenv/dist/runtime/node/internal/vm/script.mjs
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { createNotImplementedError } from "../../../_internal/utils.mjs";
|
||||
export class Script {
|
||||
runInContext(contextifiedObject, options) {
|
||||
throw createNotImplementedError("Script.runInContext");
|
||||
}
|
||||
runInNewContext(contextObject, options) {
|
||||
throw createNotImplementedError("Script.runInNewContext");
|
||||
}
|
||||
runInThisContext(options) {
|
||||
throw createNotImplementedError("Script.runInThisContext");
|
||||
}
|
||||
createCachedData() {
|
||||
throw createNotImplementedError("Script.createCachedData");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user