Chapter 2: change back to use prettier
This commit is contained in:
@@ -1,7 +1,11 @@
|
||||
const fs = require('fs')
|
||||
const file = './file.txt'
|
||||
const fs = require("fs");
|
||||
const file = "./file.txt";
|
||||
|
||||
fs.chmodSync(file,
|
||||
fs.constants.S_IRUSR | fs.constants.S_IWUSR |
|
||||
fs.constants.S_IRGRP | fs.constants.S_IWGRP |
|
||||
fs.constants.S_IROTH)
|
||||
fs.chmodSync(
|
||||
file,
|
||||
fs.constants.S_IRUSR |
|
||||
fs.constants.S_IWUSR |
|
||||
fs.constants.S_IRGRP |
|
||||
fs.constants.S_IWGRP |
|
||||
fs.constants.S_IROTH
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user