feat: init

This commit is contained in:
2026-02-13 22:02:30 +01:00
commit 8f9ff830fb
16711 changed files with 3307340 additions and 0 deletions

31
node_modules/unenv/dist/runtime/node/path.mjs generated vendored Normal file
View File

@@ -0,0 +1,31 @@
import { notImplemented } from "../_internal/utils.mjs";
import { basename, dirname, extname, format, isAbsolute, join, normalize, parse, relative, resolve, toNamespacedPath } from "pathe";
export { basename, dirname, extname, format, isAbsolute, join, normalize, parse, relative, resolve, toNamespacedPath } from "pathe";
export const sep = "/";
export const delimiter = ":";
const _pathModule = {
sep,
delimiter,
basename,
dirname,
extname,
format,
isAbsolute,
join,
normalize,
parse,
relative,
resolve,
toNamespacedPath,
posix: undefined,
win32: undefined,
_makeLong: (path) => path,
matchesGlob: /* @__PURE__ */ notImplemented(`path.matchesGlob`)
};
_pathModule.posix = _pathModule;
_pathModule.win32 = _pathModule;
export const posix = _pathModule;
export const win32 = _pathModule;
export const _makeLong = _pathModule._makeLong;
export const matchesGlob = _pathModule.matchesGlob;
export default _pathModule;