UNPKG

pop

Version:

Pop is a [Hyperapp](https://github.com/hyperapp/hyperapp) / [Ultradom](https://github.com/ultradom/ultradom) spin-off project — yet another micro-framework for creating graphical user interfaces. This is not the final title, but let's go with that for now

9 lines (6 loc) 158 B
export function clone(target, source) { var obj = {} for (var i in target) obj[i] = target[i] for (var i in source) obj[i] = source[i] return obj }