6 lines
92 B
JavaScript
6 lines
92 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var deepCopy = function(object) {
|
||
|
return jQuery.extend(true, {}, object);
|
||
|
}
|