You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1009 B
26 lines
1009 B
"use strict"; |
|
Object.defineProperty(exports, "__esModule", { value: true }); |
|
exports.Settings = exports.scandirSync = exports.scandir = void 0; |
|
const async = require("./providers/async"); |
|
const sync = require("./providers/sync"); |
|
const settings_1 = require("./settings"); |
|
exports.Settings = settings_1.default; |
|
function scandir(path, optionsOrSettingsOrCallback, callback) { |
|
if (typeof optionsOrSettingsOrCallback === 'function') { |
|
async.read(path, getSettings(), optionsOrSettingsOrCallback); |
|
return; |
|
} |
|
async.read(path, getSettings(optionsOrSettingsOrCallback), callback); |
|
} |
|
exports.scandir = scandir; |
|
function scandirSync(path, optionsOrSettings) { |
|
const settings = getSettings(optionsOrSettings); |
|
return sync.read(path, settings); |
|
} |
|
exports.scandirSync = scandirSync; |
|
function getSettings(settingsOrOptions = {}) { |
|
if (settingsOrOptions instanceof settings_1.default) { |
|
return settingsOrOptions; |
|
} |
|
return new settings_1.default(settingsOrOptions); |
|
}
|
|
|