UNPKG
clipboard
Version:
latest (2.0.11)
2.0.11
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.7.1
1.7.0
1.6.1
1.6.0
1.5.16
1.5.15
1.5.14
1.5.13
1.5.12
1.5.11
1.5.10
1.5.9
1.5.8
1.5.7
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.2
1.4.0
1.3.1
1.2.0
1.1.0
1.0.0
0.1.1
0.1.0
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.2
0.0.1
Modern copy to clipboard. No Flash. Just 2kb
clipboardjs.com
zenorocha/clipboard.js
clipboard
/
src
/
common
/
command.js
13 lines
(12 loc)
•
218 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * Executes a given operation type. *
@param
{
String
}
type
*
@return
{
Boolean
} */
export
default
function
command
(
type
) {
try
{
return
document
.
execCommand
(
type
); }
catch
(err) {
return
false
; } }