qwebs
Version:
Back-end web server
22 lines (17 loc) • 403 B
JavaScript
/*!
* qwebs
* Copyright(c) 2015 Benoît Claveau
* MIT Licensed
*/
;
function Core() {
}
Core.prototype.extend = function(destination, source) {
for (var property in source) {
if (source.hasOwnProperty(property)) {
destination[property] = source[property];
}
}
return destination;
};
exports = module.exports = new Core();