Remove console logging (#31328)

pull/31332/head
Luke Latham 2024-01-01 10:38:20 -05:00 committed by GitHub
parent 5a62750636
commit 62ade7555c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -45,7 +45,6 @@ The following example is based on [`TextDecoder`](https://developer.mozilla.org/
var win1251decoder = new TextDecoder('windows-1251');
var bytes = new Uint8Array(win1251Array);
var decodedArray = win1251decoder.decode(bytes);
console.log(decodedArray);
return decodedArray;
};
</script>