Find finds the provided key if one exists
(key string)
| 251 | |
| 252 | // Find finds the provided key if one exists |
| 253 | func (m PackComponentFileMap) Find(key string) PackComponent { |
| 254 | return m[parsePath(key)] |
| 255 | } |
| 256 | |
| 257 | // Find finds and returns the the first component with provided bundle key |
| 258 | func (m PackComponentFileMap) FindBundleKey(key string) PackComponent { |
no test coverage detected