(prop)
| 1 | export function isset (prop) { |
| 2 | return typeof prop !== 'undefined' |
| 3 | } |
| 4 | |
| 5 | export function merge (target, source) { |
| 6 | Object.keys(source).forEach((key) => { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…