webhook-action/node_modules/@nodelib/fs.walk/src/readers/reader.ts

9 lines
287 B
TypeScript

import Settings from '../settings';
import * as common from './common';
export default class Reader {
constructor(protected readonly _root: string, protected readonly _settings: Settings) {
this._root = common.replacePathSegmentSeparator(_root, _settings.pathSegmentSeparator);
}
}