(objectKey)
| 481 | } |
| 482 | |
| 483 | function encodeObjectKey(objectKey) { |
| 484 | return objectKey |
| 485 | .split("/") |
| 486 | .map((segment) => encodeURIComponent(segment)) |
| 487 | .join("/"); |
| 488 | } |
| 489 | |
| 490 | function rewriteFiles(fileContents, replacements, verbose) { |
| 491 | const changedFiles = []; |