(category, name, applicationId)
| 133 | } |
| 134 | |
| 135 | function remove(category, name, applicationId) { |
| 136 | const lastComponent = name.split('.').splice(-1); |
| 137 | const store = getStore(category, name, applicationId); |
| 138 | delete store[lastComponent]; |
| 139 | } |
| 140 | |
| 141 | function get(category, name, applicationId) { |
| 142 | const lastComponent = name.split('.').splice(-1); |
no test coverage detected
searching dependent graphs…