* Mixin own properties of source * object into the target. * * @param {Object} target * @param {Object} source
(target, source)
| 228 | * @param {Object} source |
| 229 | */ |
| 230 | function mixin(target, source) { |
| 231 | for (var key in source) { |
| 232 | if (source.hasOwnProperty(key)) target[key] = source[key]; |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | // There should never be more than |
| 237 | // one instance of `FastDom` in an app |
no outgoing calls
no test coverage detected
searching dependent graphs…