MCPcopy
hub / github.com/gopherjs/gopherjs / IndexByte

Function IndexByte

compiler/natives/src/strings/strings.go:11–13  ·  view source on GitHub ↗
(s string, c byte)

Source from the content-addressed store, hash-verified

9)
10
11func IndexByte(s string, c byte) int {
12 return js.InternalObject(s).Call("indexOf", js.Global.Get("String").Call("fromCharCode", c)).Int()
13}
14
15func Index(s, sep string) int {
16 return js.InternalObject(s).Call("indexOf", js.InternalObject(sep)).Int()

Callers

nothing calls this directly

Calls 4

InternalObjectFunction · 0.92
GetMethod · 0.65
IntMethod · 0.45
CallMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…