(property)
| 689 | } |
| 690 | |
| 691 | function unpackProperty(property) { |
| 692 | property._unpackedValues = unpackValues(property); |
| 693 | |
| 694 | // Free memory |
| 695 | property._arrayOffsets = undefined; |
| 696 | property._stringOffsets = undefined; |
| 697 | property._values = undefined; |
| 698 | } |
| 699 | |
| 700 | function unpackValues(property) { |
| 701 | const count = property._count; |
no test coverage detected
searching dependent graphs…