UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

18 lines (14 loc) 351 B
var bind = require('function-bind'); var has = bind.call(Function.call, Object.prototype.hasOwnProperty); var $assign = Object.assign; module.exports = function assign(target, source) { if ($assign) { return $assign(target, source); } for (var key in source) { if (has(source, key)) { target[key] = source[key]; } } return target; };