UNPKG

@nodelib/fs.stat

Version:

Get the status of a file with some features

26 lines (25 loc) 929 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.statSync = exports.stat = void 0; const async = require("./providers/async"); const sync = require("./providers/sync"); const settings_1 = require("./settings"); function stat(path, optionsOrSettingsOrCallback, callback) { if (typeof optionsOrSettingsOrCallback === 'function') { async.read(path, getSettings(), optionsOrSettingsOrCallback); return; } async.read(path, getSettings(optionsOrSettingsOrCallback), callback); } exports.stat = stat; function statSync(path, optionsOrSettings) { const settings = getSettings(optionsOrSettings); return sync.read(path, settings); } exports.statSync = statSync; function getSettings(settingsOrOptions = {}) { if (settingsOrOptions instanceof settings_1.Settings) { return settingsOrOptions; } return new settings_1.Settings(settingsOrOptions); }