Files
automatisch/packages/web/src/helpers/copyInputValue.ts
2022-01-20 17:09:12 +01:00

6 lines
136 B
TypeScript

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