(name, constructor)
| 7 | var adapters = {}; |
| 8 | |
| 9 | function addAdapter(name, constructor) { |
| 10 | adapters[name] = constructor; |
| 11 | } |
| 12 | |
| 13 | function getAdapter(name) { |
| 14 | if (name in aliases) { |
nothing calls this directly
no outgoing calls
no test coverage detected