UNPKG

ionic

Version:

A tool for creating and developing Ionic Framework mobile apps.

16 lines (11 loc) 263 B
'use strict'; function mixIn(target, source) { var key; // No need to check for hasOwnProperty.. this is used // just in plain objects for (key in source) { target[key] = source[key]; } return target; } module.exports = mixIn;