jsutil: Remove println

This commit is contained in:
Hajime Hoshi 2020-12-06 02:58:52 +09:00
parent 7a86238c9a
commit 2ca0f3f300

View File

@ -40,7 +40,6 @@ func TemporaryUint8Array(byteLength int) js.Value {
if isTypedArrayWritable { if isTypedArrayWritable {
if uint8ArrayObj.IsUndefined() { if uint8ArrayObj.IsUndefined() {
uint8ArrayObj = js.Global().Get("Uint8Array").New() uint8ArrayObj = js.Global().Get("Uint8Array").New()
println("h")
} }
uint8ArrayObj.Set("buffer", temporaryBuffer) uint8ArrayObj.Set("buffer", temporaryBuffer)
uint8ArrayObj.Set("byteOffset", 0) uint8ArrayObj.Set("byteOffset", 0)