PHP 7.4.33
Preview: index.js Size: 1.40 KB
/var/www/coop-podio-sms.bitkit.dk/httpdocs/node_modules/concat/index.js
"use strict";
const fs_1 = require("fs");
const path_1 = require("path");
const log = (err) => console.log(err);
const isFile = (f) => fs_1.statSync(f).isFile();
const write = (fName, str) => new Promise((res, rej) => {
    fs_1.writeFile(path_1.resolve(fName), str, (err) => {
        if (err)
            return rej(err);
        return res(str);
    });
});
const readFolder = (folder) => new Promise((res, rej) => {
    fs_1.readdir(path_1.resolve(folder), (err, files) => {
        if (err)
            rej(err);
        const fileList = files.map(f => path_1.join(folder, f));
        res(fileList.filter(isFile));
    });
});
const read = (fName) => new Promise((res, rej) => {
    fs_1.readFile(path_1.resolve(fName), (err, str) => {
        if (err)
            rej(err);
        res(str);
    });
});
const concat = (files) => new Promise((res, rej) => {
    return Promise.all(files.map(read))
        .then(src => res(src.join('\n')))
        .catch(rej);
});
module.exports = (folder, outFile) => new Promise((res, rej) => {
    let concatenated;
    if (typeof folder === 'string') {
        concatenated = readFolder(folder)
            .then(concat);
    }
    else {
        concatenated = concat(folder);
    }
    if (outFile) {
        concatenated.then((out) => write(outFile, out)
            .then(res)
            .catch(rej)).catch(rej);
    }
    else {
        concatenated.then(res).catch(rej);
    }
});

Directory Contents

Dirs: 3 × Files: 8
Name Size Perms Modified Actions
bin DIR
- drwxr-xr-x 2024-05-28 16:34:50
Edit Download
- drwxr-xr-x 2024-05-28 16:34:55
Edit Download
test DIR
- drwxr-xr-x 2024-05-28 16:34:50
Edit Download
578 B lrw-r--r-- 2017-04-22 15:02:08
Edit Download
66 B lrw-r--r-- 2017-04-22 16:45:23
Edit Download
1.40 KB lrw-r--r-- 2017-04-22 17:10:38
Edit Download
1.31 KB lrw-r--r-- 2017-04-22 17:10:38
Edit Download
1.05 KB lrw-r--r-- 2017-04-22 15:02:08
Edit Download
1.82 KB lrw-r--r-- 2024-05-28 16:34:58
Edit Download
859 B lrw-r--r-- 2017-04-22 17:10:33
Edit Download
131 B lrw-r--r-- 2017-04-22 15:45:37
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).