Urara-Blog/node_modules/.pnpm-store/v3/files/33/d4fbd946ad940ae7d86ba7e10466c61163c11f04c7533e0e4f34ccff0ff76886da66de06272ee85153fc0335c2f34932b7f88257564ff7f353b2068fef2d49
2022-08-14 01:14:53 +08:00

23 lines
779 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const sync_1 = require("../readers/sync");
const provider_1 = require("./provider");
class ProviderSync extends provider_1.default {
constructor() {
super(...arguments);
this._reader = new sync_1.default(this._settings);
}
read(task) {
const root = this._getRootDirectory(task);
const options = this._getReaderOptions(task);
const entries = this.api(root, task, options);
return entries.map(options.transform);
}
api(root, task, options) {
if (task.dynamic) {
return this._reader.dynamic(root, options);
}
return this._reader.static(task.patterns, options);
}
}
exports.default = ProviderSync;