hz-zhhq-web/node_modules/clipboardy
zzyuan 304842bddc 前端提交2 2025-02-25 13:44:33 +08:00
..
fallbacks 前端提交2 2025-02-25 13:44:33 +08:00
lib 前端提交2 2025-02-25 13:44:33 +08:00
node_modules/execa 前端提交2 2025-02-25 13:44:33 +08:00
index.js 前端提交2 2025-02-25 13:44:33 +08:00
license 前端提交2 2025-02-25 13:44:33 +08:00
package.json 前端提交2 2025-02-25 13:44:33 +08:00
readme.md 前端提交2 2025-02-25 13:44:33 +08:00

readme.md

clipboardy Build Status: macOS & Linux Build status: Windows

Access the system clipboard (copy/paste)

Cross-platform. Supports: macOS, Windows, Linux, OpenBSD, FreeBSD, Android with Termux.

Install

$ npm install clipboardy

Usage

const clipboardy = require('clipboardy');

clipboardy.writeSync('🦄');

clipboardy.readSync();
//=> '🦄'

API

clipboardy

.write(input)

Write (copy) to the clipboard asynchronously. Returns a Promise.

input

Type: string

.read()

Read (paste) from the clipboard asynchronously. Returns a Promise.

.writeSync(input)

Write (copy) to the clipboard synchronously.

input

Type: string

.readSync()

Read (paste) from the clipboard synchronously.

License

MIT © Sindre Sorhus