(source: unknown)
| 416 | } |
| 417 | |
| 418 | function isImmutableRecord(source: unknown): boolean { |
| 419 | return Boolean(source && isObjectLiteral(source) && source[IS_RECORD_SYMBOL]) |
| 420 | } |
| 421 | |
| 422 | /** |
| 423 | * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. |
no test coverage detected