UNPKG

dmclc

Version:

Dolphin Minecraft Launcher Core

16 lines (15 loc) 392 B
import { execSync } from "child_process"; import os from "os"; export default function copy(str) { switch (os.platform()) { case "win32": execSync(`echo ${str}|clip`); break; case "darwin": execSync(`echo "${str}" | pbcopy`); break; default: execSync(`echo "${str}" | xclip`); break; } }