source: trip-planner-front/node_modules/@nodelib/fs.walk/out/providers/sync.js@ bdd6491

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

initial commit

  • Property mode set to 100644
File size: 407 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const sync_1 = require("../readers/sync");
4class SyncProvider {
5 constructor(_root, _settings) {
6 this._root = _root;
7 this._settings = _settings;
8 this._reader = new sync_1.default(this._root, this._settings);
9 }
10 read() {
11 return this._reader.read();
12 }
13}
14exports.default = SyncProvider;
Note: See TracBrowser for help on using the repository browser.