Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
16
Frontend-Learner/node_modules/unenv/dist/runtime/node/domain.mjs
generated
vendored
Normal file
16
Frontend-Learner/node_modules/unenv/dist/runtime/node/domain.mjs
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { Domain } from "./internal/domain/domain.mjs";
|
||||
export { Domain } from "./internal/domain/domain.mjs";
|
||||
export const create = function() {
|
||||
return new Domain();
|
||||
};
|
||||
export const createDomain = create;
|
||||
const _domain = create();
|
||||
export const active = () => _domain;
|
||||
export const _stack = [];
|
||||
export default {
|
||||
Domain,
|
||||
_stack,
|
||||
active,
|
||||
create,
|
||||
createDomain
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue