(s, sep string)
| 17 | } |
| 18 | |
| 19 | func LastIndex(s, sep string) int { |
| 20 | return js.InternalObject(s).Call("lastIndexOf", js.InternalObject(sep)).Int() |
| 21 | } |
| 22 | |
| 23 | func Count(s, sep string) int { |
| 24 | n := 0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…