PHP 7.4.33
Preview: index.js Size: 381 B
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/utils-merge/index.js
/**
 * Merge object b with object a.
 *
 *     var a = { foo: 'bar' }
 *       , b = { bar: 'baz' };
 *
 *     merge(a, b);
 *     // => { foo: 'bar', bar: 'baz' }
 *
 * @param {Object} a
 * @param {Object} b
 * @return {Object}
 * @api public
 */

exports = module.exports = function(a, b){
  if (a && b) {
    for (var key in b) {
      a[key] = b[key];
    }
  }
  return a;
};

Directory Contents

Dirs: 0 × Files: 5
Name Size Perms Modified Actions
79 B lrw-r--r-- 2025-03-28 11:04:35
Edit Download
381 B lrw-r--r-- 2025-03-28 11:04:35
Edit Download
1.06 KB lrw-r--r-- 2025-03-28 11:04:35
Edit Download
857 B lrw-r--r-- 2025-03-28 11:04:35
Edit Download
1.29 KB lrw-r--r-- 2025-03-28 11:04:35
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).