* Creates deep copy of given object.
(entity: T, respectCustomCloneMethod = true)
| 333 | * Creates deep copy of given object. |
| 334 | */ |
| 335 | static copy<T>(entity: T, respectCustomCloneMethod = true): T { |
| 336 | return clone(entity, respectCustomCloneMethod); |
| 337 | } |
| 338 | |
| 339 | /** |
| 340 | * Normalize the argument to always be an array. |