UNPKG

mozu-node-sdk

Version:

Mozu JavaScript SDK for Node.js and Arc.js environments

12 lines (11 loc) 300 B
'use strict'; module.exports = function extend(target) { return Array.prototype.slice.call(arguments,1).reduce(function(out, next) { if (next && typeof next !== "string") { Object.keys(next).forEach(function(k) { out[k] = next[k]; }); } return out; }, target); };