* Returns the estimated size for the requested source type. * @deprecated * @param {ChunkSizeOptions} options options object * @returns {number} total size of this chunk
(options = {})
| 378 | * @returns {number} total size of this chunk |
| 379 | */ |
| 380 | size(options = {}) { |
| 381 | const chunkGraph = ChunkGraph.getChunkGraphForChunk( |
| 382 | this, |
| 383 | class="st">"Chunk.size", |
| 384 | class="st">"DEP_WEBPACK_CHUNK_SIZE" |
| 385 | ); |
| 386 | return chunkGraph.getChunkSize(this, options); |
| 387 | } |
| 388 | |
| 389 | /** |
| 390 | * Returns the integrated size with another chunk. |
no test coverage detected