UNPKG

strudel

Version:

A front-end framework for back-end powered web.

10 lines (8 loc) 172 B
const mix = (target, source) => { Object.keys(source).forEach((prop) => { if (!target[prop]) { target[prop] = source[prop]; } }); }; export default mix;