(a,b)
| 3608 | } |
| 3609 | |
| 3610 | function merge(a,b) |
| 3611 | { |
| 3612 | var rv = {}; |
| 3613 | var p; |
| 3614 | for (p in a) { |
| 3615 | rv[p] = a[p]; |
| 3616 | } |
| 3617 | for (p in b) { |
| 3618 | rv[p] = b[p]; |
| 3619 | } |
| 3620 | return rv; |
| 3621 | } |
| 3622 | |
| 3623 | function expose(object, name) |
| 3624 | { |
no outgoing calls
no test coverage detected