summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext/object/copy-deep.js
blob: 548e3ee4b66baca2b37ab46ac06a6db52323da9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
'use strict';

var isPlainObject = require('./is-plain-object')
  , value         = require('./valid-value')

  , keys = Object.keys
  , copy;

copy = function (source) {
	var target = {};
	this[0].push(source);
	this[1].push(target);
	keys(source).forEach(function (key) {
		var index;
		if (!isPlainObject(source[key])) {
			target[key] = source[key];
			return;
		}
		index = this[0].indexOf(source[key]);
		if (index === -1) target[key] = copy.call(this, source[key]);
		else target[key] = this[1][index];
	}, this);
	return target;
};

module.exports = function (source) {
	var obj = Object(value(source));
	if (obj !== source) return obj;
	return copy.call([[], []], obj);
};