A Twitch.tv viewer reward and games system.
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.

16 lines
214 B

  1. 'use strict';
  2. /**
  3. * Merge `b` into `a`.
  4. *
  5. * @param {Object} a
  6. * @param {Object} b
  7. * @return {Object}
  8. * @api public
  9. */
  10. exports.merge = function(a, b) {
  11. for (var key in b) a[key] = b[key];
  12. return a;
  13. };