Caption support (#2462)

Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
cj
2022-05-05 20:59:28 -05:00
committed by GitHub
parent ab1b30ffb7
commit c1a096a1a6
114 changed files with 16899 additions and 17 deletions

12
vendor/github.com/asticode/go-astikit/os_js.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
// +build js,wasm
package astikit
import (
"os"
"syscall"
)
func isTermSignal(s os.Signal) bool {
return s == syscall.SIGKILL || s == syscall.SIGINT || s == syscall.SIGQUIT || s == syscall.SIGTERM
}