aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@kwsites/file-exists/dist/src/index.js
diff options
context:
space:
mode:
authorScoots Dash <contact@minteck.org>2022-04-23 14:12:30 +0000
committerScoots Dash <contact@minteck.org>2022-04-23 14:12:30 +0000
commita927497b43cbe1438f3d7478932f3f7d03ea347c (patch)
tree0a3c88978b4294fb30afad58daa86c46fbedc2f6 /node_modules/@kwsites/file-exists/dist/src/index.js
parentba5fa694351774f2684c1aefdc215da5c6f39ba6 (diff)
parentf0db5bbbcd623812a391862d217519afafe197c6 (diff)
downloadtwilight-a927497b43cbe1438f3d7478932f3f7d03ea347c.tar.gz
twilight-a927497b43cbe1438f3d7478932f3f7d03ea347c.tar.bz2
twilight-a927497b43cbe1438f3d7478932f3f7d03ea347c.zip
Merge branch 'deprecation' into 'trunk'HEADtrunk
Disable the Twilight Package Manager See merge request minteck/twilight!1
Diffstat (limited to 'node_modules/@kwsites/file-exists/dist/src/index.js')
-rw-r--r--node_modules/@kwsites/file-exists/dist/src/index.js55
1 files changed, 0 insertions, 55 deletions
diff --git a/node_modules/@kwsites/file-exists/dist/src/index.js b/node_modules/@kwsites/file-exists/dist/src/index.js
deleted file mode 100644
index 8a41c70..0000000
--- a/node_modules/@kwsites/file-exists/dist/src/index.js
+++ /dev/null
@@ -1,55 +0,0 @@
-"use strict";
-var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
-};
-Object.defineProperty(exports, "__esModule", { value: true });
-const fs_1 = require("fs");
-const debug_1 = __importDefault(require("debug"));
-const log = debug_1.default('@kwsites/file-exists');
-function check(path, isFile, isDirectory) {
- log(`checking %s`, path);
- try {
- const stat = fs_1.statSync(path);
- if (stat.isFile() && isFile) {
- log(`[OK] path represents a file`);
- return true;
- }
- if (stat.isDirectory() && isDirectory) {
- log(`[OK] path represents a directory`);
- return true;
- }
- log(`[FAIL] path represents something other than a file or directory`);
- return false;
- }
- catch (e) {
- if (e.code === 'ENOENT') {
- log(`[FAIL] path is not accessible: %o`, e);
- return false;
- }
- log(`[FATAL] %o`, e);
- throw e;
- }
-}
-/**
- * Synchronous validation of a path existing either as a file or as a directory.
- *
- * @param {string} path The path to check
- * @param {number} type One or both of the exported numeric constants
- */
-function exists(path, type = exports.READABLE) {
- return check(path, (type & exports.FILE) > 0, (type & exports.FOLDER) > 0);
-}
-exports.exists = exists;
-/**
- * Constant representing a file
- */
-exports.FILE = 1;
-/**
- * Constant representing a folder
- */
-exports.FOLDER = 2;
-/**
- * Constant representing either a file or a folder
- */
-exports.READABLE = exports.FILE + exports.FOLDER;
-//# sourceMappingURL=index.js.map \ No newline at end of file