UNPKG

kitchensink

Version:

Dispatch's awesome components and style guide

10 lines (9 loc) 225 B
var has = Object.prototype.hasOwnProperty; module.exports = Object.assign || function assign(target, source) { for (var key in source) { if (has.call(source, key)) { target[key] = source[key]; } } return target; };