Files
automatisch/packages/web/src/helpers/copyInputValue.ts
2022-11-05 23:57:33 +01:00

6 lines
135 B
TypeScript

import copy from 'clipboard-copy';
export default function copyInputValue(element: HTMLInputElement): void {
copy(element.value);
}