We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b6f67 commit 888931dCopy full SHA for 888931d
adm-zip.js
@@ -288,9 +288,9 @@ module.exports = function(/*String*/input) {
288
289
if (!attr) {
290
if (entry.isDirectory) {
291
- attr = (040755 << 16) | 0x10; // (permissions drwxr-xr-x) + (MS-DOS directory flag)
+ attr = (0o40755 << 16) | 0x10; // (permissions drwxr-xr-x) + (MS-DOS directory flag)
292
} else {
293
- attr = 0644 << 16; // permissions -r-wr--r--
+ attr = 0o644 << 16; // permissions -r-wr--r--
294
}
295
296
0 commit comments