![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/metras.v32.1/node_modules/mixin-object/ |
'use strict'; var isObject = require('is-extendable'); var forIn = require('for-in'); function mixin(target, objects) { if (!isObject(target)) { throw new TypeError('mixin-object expects the first argument to be an object.'); } var len = arguments.length, i = 0; while (++i < len) { var obj = arguments[i]; if (isObject(obj)) { forIn(obj, copy, target); } } return target; } /** * copy properties from the source object to the * target object. * * @param {*} `value` * @param {String} `key` */ function copy(value, key) { this[key] = value; } /** * Expose `mixin` */ module.exports = mixin;