jsutil: Remove unused functions

This commit is contained in:
Hajime Hoshi 2019-06-15 01:34:28 +09:00
parent 7efe4758bd
commit 34187d03a8

View File

@ -23,14 +23,6 @@ import (
. "github.com/hajimehoshi/ebiten/internal/jsutil"
)
func jsArray(values []float64) js.Value {
a := js.Global().Get("Array").New()
for _, v := range values {
a.Call("push", v)
}
return a
}
func TestArrayBufferToSlice(t *testing.T) {
// TODO
}