-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.js
87 lines (69 loc) · 2.13 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
'use strict';
const fs = require('fs');
const stream = require('stream');
const {promisify} = require('util');
const tempWrite = require('temp-write');
const path = require('path');
const pipeline = promisify(stream.pipeline);
const {Transform} = stream;
function hasBOM(text) {
return (text.toString().charCodeAt(0) === 0xFEFF);
}
function prependBOM(text) {
return '\uFEFF' + text;
}
function stripBOM(text) {
return text.toString().slice(1);
}
module.exports = async (filename, data) => {
let bomFound = false;
let bomPlaced = false;
const checkStripBomTransformer = new Transform({
transform(chunk, _, callback) {
let fileData = chunk;
if (!bomFound) {
bomFound = hasBOM(fileData);
fileData = hasBOM(fileData) ? stripBOM(fileData) : fileData;
}
callback(false, Buffer.from(fileData));
}
});
const checkPrependBomTransformer = new Transform({
transform(chunk, _, callback) {
let fileData = chunk.toString();
if (bomFound && !bomPlaced) {
fileData = prependBOM(fileData);
bomPlaced = true;
}
callback(false, Buffer.from(fileData));
}
});
filename = path.resolve(filename);
const temporaryFile = await tempWrite(data);
try {
await pipeline(fs.createReadStream(filename), checkStripBomTransformer, fs.createWriteStream(temporaryFile, {flags: 'a'}));
} catch (error) {
if (error.code === 'ENOENT' && error.path === filename) {
await fs.promises.writeFile(filename, data);
return;
}
throw error;
}
await pipeline(fs.createReadStream(temporaryFile), checkPrependBomTransformer, fs.createWriteStream(filename));
await fs.promises.unlink(temporaryFile);
};
module.exports.sync = (filename, data) => {
let fileData;
try {
fileData = fs.readFileSync(filename);
} catch (error) {
if (error.code === 'ENOENT') {
fs.writeFileSync(filename, data);
return;
}
throw error;
}
data = hasBOM(fileData) ? prependBOM(data) : data;
fileData = hasBOM(fileData) ? stripBOM(fileData) : fileData;
fs.writeFileSync(filename, Buffer.concat([Buffer.from(data), Buffer.from(fileData)]));
};