initial commit
This commit is contained in:
23
node_modules/clipboardy/lib/windows.js
generated
vendored
Normal file
23
node_modules/clipboardy/lib/windows.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import path from 'node:path';
|
||||
import {fileURLToPath} from 'node:url';
|
||||
import execa from 'execa';
|
||||
import arch from 'arch';
|
||||
|
||||
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
||||
|
||||
const binarySuffix = arch() === 'x64' ? 'x86_64' : 'i686';
|
||||
|
||||
// Binaries from: https://github.com/sindresorhus/win-clipboard
|
||||
const windowBinaryPath = path.join(__dirname, `../fallbacks/windows/clipboard_${binarySuffix}.exe`);
|
||||
|
||||
const clipboard = {
|
||||
copy: async options => execa(windowBinaryPath, ['--copy'], options),
|
||||
paste: async options => {
|
||||
const {stdout} = await execa(windowBinaryPath, ['--paste'], options);
|
||||
return stdout;
|
||||
},
|
||||
copySync: options => execa.sync(windowBinaryPath, ['--copy'], options),
|
||||
pasteSync: options => execa.sync(windowBinaryPath, ['--paste'], options).stdout,
|
||||
};
|
||||
|
||||
export default clipboard;
|
||||
Reference in New Issue
Block a user