%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/node_modules/es-abstract/helpers/
Upload File :
Create Path :
Current File : /var/www/html/node_modules/es-abstract/helpers/assign.js

'use strict';

var GetIntrinsic = require('get-intrinsic');

var has = require('has');

var $assign = GetIntrinsic('%Object%').assign;

module.exports = function assign(target, source) {
	if ($assign) {
		return $assign(target, source);
	}

	// eslint-disable-next-line no-restricted-syntax
	for (var key in source) {
		if (has(source, key)) {
			// eslint-disable-next-line no-param-reassign
			target[key] = source[key];
		}
	}
	return target;
};

Zerion Mini Shell 1.0