UNPKG

xatto

Version:

xatto is View Layer Library based on Function and Context using VirtualDOM. This is developed by forking from jorgebucaran/superfine.

9 lines (8 loc) 180 B
export function assign (target: any, source: any) { for (const key in source) { if (source.hasOwnProperty(key)) { target[key] = source[key] } } return target }