(node)
| 1599 | return node; |
| 1600 | }, |
| 1601 | getFileDataAsTypedArray(node) { |
| 1602 | if (!node.contents) return new Uint8Array(0); |
| 1603 | if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); |
| 1604 | return new Uint8Array(node.contents); |
| 1605 | }, |
| 1606 | expandFileStorage(node, newCapacity) { |
| 1607 | var prevCapacity = node.contents ? node.contents.length : 0; |
| 1608 | if (prevCapacity >= newCapacity) return; |
nothing calls this directly
no outgoing calls
no test coverage detected