(dosPermissions, isDir)
| 740 | * Bit 5 Archive |
| 741 | */ |
| 742 | var generateDosExternalFileAttr = function (dosPermissions, isDir) { |
| 743 | |
| 744 | // the dir flag is already set for compatibility |
| 745 | return (dosPermissions || 0) & 0x3F; |
| 746 | }; |
| 747 | |
| 748 | /** |
| 749 | * Generate the various parts used in the construction of the final zip file. |