mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-14 06:35:46 +01:00
Replace calls to octal() with octal integer literals.
This commit is contained in:
@@ -287,7 +287,7 @@ var Help = Module("Help", {
|
||||
const TIME = Date.now();
|
||||
|
||||
if (!FILE.exists() && (/\/$/.test(path) && !/\./.test(FILE.leafName)))
|
||||
FILE.create(FILE.DIRECTORY_TYPE, octal(755));
|
||||
FILE.create(FILE.DIRECTORY_TYPE, 0o755);
|
||||
|
||||
dactyl.initHelp();
|
||||
if (FILE.isDirectory()) {
|
||||
|
||||
Reference in New Issue
Block a user