Skip to content

Commit 87a77e4

Browse files
committed
Remove a spare console.log from readTextIE().
1 parent adc110b commit 87a77e4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/clipboard-polyfill/strategies/internet-explorer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export function writeTextIE(text: string): boolean {
3232
// Returns "" if the read failed, e.g. because the user rejected the permission.
3333
export function readTextIE(): string {
3434
var text = ieWindow!.clipboardData.getData("Text");
35-
console.log(text);
3635
if (text === "") {
3736
throw new Error(
3837
"Empty clipboard or could not read plain text from clipboard",

0 commit comments

Comments
 (0)