()
| 34 | } |
| 35 | |
| 36 | export function randomId() { |
| 37 | return Date.now() + Math.round(Math.random() * 1000); |
| 38 | } |
| 39 | |
| 40 | export function mergeObjects<T>(source: object, target: object): T { |
| 41 | for (const prop in target) { |
no outgoing calls
no test coverage detected