aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@nodelib/fs.walk/out/readers/reader.js
blob: 782f07cbfab62ff2469f26b2fc98050a38b21f27 (plain)
1
2
3
4
5
6
7
8
9
10
11
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const common = require("./common");
class Reader {
    constructor(_root, _settings) {
        this._root = _root;
        this._settings = _settings;
        this._root = common.replacePathSegmentSeparator(_root, _settings.pathSegmentSeparator);
    }
}
exports.default = Reader;