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

21
node_modules/unenv/dist/runtime/node/readline.mjs generated vendored Normal file
View File

@@ -0,0 +1,21 @@
import noop from "../mock/noop.mjs";
import promises from "node:readline/promises";
import { Interface } from "./internal/readline/interface.mjs";
export { promises };
export { Interface } from "./internal/readline/interface.mjs";
export const clearLine = () => false;
export const clearScreenDown = () => false;
export const createInterface = () => new Interface();
export const cursorTo = () => false;
export const emitKeypressEvents = noop;
export const moveCursor = () => false;
export default {
clearLine,
clearScreenDown,
createInterface,
cursorTo,
emitKeypressEvents,
moveCursor,
Interface,
promises
};