UNPKG
@akasuv/rex
Version:
latest (1.1.0)
1.1.0
1.0.0
Rex is an everything toolkit for React.
github.com/akasuv/rex
akasuv/rex
@akasuv/rex
/
lib
/
cjs
/
actions
/
copyToClipboard.js
7 lines
(6 loc)
•
188 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
function
copyToClipboard
(
text
) { navigator.
clipboard
.
writeText
(text); }
exports
.
default
= copyToClipboard;