(key: string)
| 44 | return SessionRouteKey.fromLegacy(split === -1 ? key : key.slice(split + 1)) |
| 45 | }, |
| 46 | scope(key: string) { |
| 47 | const split = key.indexOf(separator) |
| 48 | if (split === -1) return ServerScope.local |
| 49 | return fragment("Stored server scope", key.slice(0, split)) as ServerScope |
| 50 | }, |
| 51 | } |
| 52 | |
| 53 | export const ScopedKey = { |
nothing calls this directly
no test coverage detected