Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
369 B

  1. module.exports = extend
  2. var hasOwnProperty = Object.prototype.hasOwnProperty;
  3. function extend(target) {
  4. for (var i = 1; i < arguments.length; i++) {
  5. var source = arguments[i]
  6. for (var key in source) {
  7. if (hasOwnProperty.call(source, key)) {
  8. target[key] = source[key]
  9. }
  10. }
  11. }
  12. return target
  13. }