UNPKG

qwebs

Version:
22 lines (17 loc) 403 B
/*! * qwebs * Copyright(c) 2015 Benoît Claveau * MIT Licensed */ "use strict"; 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();