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

19
node_modules/clipboardy/browser.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
/* eslint-env browser */
const clipboard = {};
clipboard.write = async text => {
await navigator.clipboard.writeText(text);
};
clipboard.read = async () => navigator.clipboard.readText();
clipboard.readSync = () => {
throw new Error('`.readSync()` is not supported in browsers!');
};
clipboard.writeSync = () => {
throw new Error('`.writeSync()` is not supported in browsers!');
};
export default clipboard;