(scope: string, name: string)
| 10 | } |
| 11 | |
| 12 | export function get(scope: string, name: string) { |
| 13 | return (cache[scope] || {})[name]; |
| 14 | } |
| 15 | |
| 16 | export function has(scope: string, name: string) { |
| 17 | return cache[scope] && Object.prototype.hasOwnProperty.call(cache[scope], name); |
no outgoing calls
no test coverage detected