(map, key)
| 26 | return typeof value === 'function'; |
| 27 | } |
| 28 | function getMapValue(map, key) { |
| 29 | return (key != null && hasOwn(map, key)) ? map[key] : null; |
| 30 | } |
| 31 | |
| 32 | function create(opt) { |
| 33 | return new SimpleOptionPlayer(opt); |
no test coverage detected
searching dependent graphs…