mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
13 lines
255 B
Go
Executable File
13 lines
255 B
Go
Executable File
package denco
|
|
|
|
// NextSeparator returns an index of next separator in path.
|
|
func NextSeparator(path string, start int) int {
|
|
for start < len(path) {
|
|
if c := path[start]; c == '/' || c == TerminationCharacter {
|
|
break
|
|
}
|
|
start++
|
|
}
|
|
return start
|
|
}
|