source: trip-planner-front/node_modules/@nodelib/fs.scandir/out/index.js

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1009 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.Settings = exports.scandirSync = exports.scandir = void 0;
4const async = require("./providers/async");
5const sync = require("./providers/sync");
6const settings_1 = require("./settings");
7exports.Settings = settings_1.default;
8function scandir(path, optionsOrSettingsOrCallback, callback) {
9 if (typeof optionsOrSettingsOrCallback === 'function') {
10 async.read(path, getSettings(), optionsOrSettingsOrCallback);
11 return;
12 }
13 async.read(path, getSettings(optionsOrSettingsOrCallback), callback);
14}
15exports.scandir = scandir;
16function scandirSync(path, optionsOrSettings) {
17 const settings = getSettings(optionsOrSettings);
18 return sync.read(path, settings);
19}
20exports.scandirSync = scandirSync;
21function getSettings(settingsOrOptions = {}) {
22 if (settingsOrOptions instanceof settings_1.default) {
23 return settingsOrOptions;
24 }
25 return new settings_1.default(settingsOrOptions);
26}
Note: See TracBrowser for help on using the repository browser.