Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/tsconfig-paths/lib/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.removeExtension = exports.fileExistsAsync = exports.readJsonFromDiskAsync = exports.readJsonFromDiskSync = exports.fileExistsSync = void 0; var fs = require("fs"); function fileExistsSync(path) { // If the file doesn't exist, avoid throwing an exception over the native barrier for every miss if (!fs.existsSync(path)) { return false; } try { var stats = fs.statSync(path); return stats.isFile(); } catch (err) { // If error, assume file did not exist return false; } } exports.fileExistsSync = fileExistsSync; /** * Reads package.json from disk * * @param file Path to package.json */ // eslint-disable-next-line @typescript-eslint/no-explicit-any function readJsonFromDiskSync(packageJsonPath) { if (!fs.existsSync(packageJsonPath)) { return undefined; } // eslint-disable-next-line @typescript-eslint/no-require-imports return require(packageJsonPath); } exports.readJsonFromDiskSync = readJsonFromDiskSync; function readJsonFromDiskAsync(path, // eslint-disable-next-line @typescript-eslint/no-explicit-any callback) { fs.readFile(path, "utf8", function (err, result) { // If error, assume file did not exist if (err || !result) { return callback(); } var json = JSON.parse(result); return callback(undefined, json); }); } exports.readJsonFromDiskAsync = readJsonFromDiskAsync; function fileExistsAsync(path2, callback2) { fs.stat(path2, function (err, stats) { if (err) { // If error assume file does not exist return callback2(undefined, false); } callback2(undefined, stats ? stats.isFile() : false); }); } exports.fileExistsAsync = fileExistsAsync; function removeExtension(path) { return path.substring(0, path.lastIndexOf(".")) || path; } exports.removeExtension = removeExtension; //# sourceMappingURL=filesystem.js.map