(chunkNumber, identifier)
| 18 | } |
| 19 | |
| 20 | function getChunkFilename(chunkNumber, identifier) { |
| 21 | // Clean up the identifier |
| 22 | identifier = cleanIdentifier(identifier); |
| 23 | // What would the file name be? |
| 24 | return path.resolve($.temporaryFolder, './flow-' + identifier + '.' + chunkNumber); |
| 25 | } |
| 26 | |
| 27 | function validateRequest(chunkNumber, chunkSize, totalSize, identifier, filename, fileSize) { |
| 28 | // Clean up the identifier |
no test coverage detected
searching dependent graphs…