We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
console.log
readTextIE()
1 parent adc110b commit 87a77e4Copy full SHA for 87a77e4
src/clipboard-polyfill/strategies/internet-explorer.ts
@@ -32,7 +32,6 @@ export function writeTextIE(text: string): boolean {
32
// Returns "" if the read failed, e.g. because the user rejected the permission.
33
export function readTextIE(): string {
34
var text = ieWindow!.clipboardData.getData("Text");
35
- console.log(text);
36
if (text === "") {
37
throw new Error(
38
"Empty clipboard or could not read plain text from clipboard",
0 commit comments