* @internal please do not use.
(o: U)
| 739 | * @internal please do not use. |
| 740 | */ |
| 741 | protected deepCopyMaybe<U>(o: U): U { |
| 742 | return this.config.immutable === true ? deepCopy(o) : o; |
| 743 | } |
| 744 | |
| 745 | /** |
| 746 | * @internal please do not use. |
nothing calls this directly
no test coverage detected