(sessionId: string, name: string)
| 50 | |
| 51 | /** Build the fully-qualified name the binding stores. */ |
| 52 | export function scopedName(sessionId: string, name: string): string { |
| 53 | return `${assertSessionId(sessionId)}${SCOPE_SEPARATOR}${assertLocalName(name)}`; |
| 54 | } |
| 55 | |
| 56 | /** The prefix that every scoped name for a session begins with. */ |
| 57 | export function scopePrefix(sessionId: string): string { |
no test coverage detected