Sha256: 11ab7580176e2390e9d27d2217f330979a41ca5f1bde9c27fd2af0cf78956094
Contents?: true
Size: 696 Bytes
Versions: 42
Compression:
Stored size: 696 Bytes
Contents
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const fs = require("./adapters/fs"); class Settings { constructor(_options = {}) { this._options = _options; this.followSymbolicLink = this._getValue(this._options.followSymbolicLink, true); this.fs = fs.createFileSystemAdapter(this._options.fs); this.markSymbolicLink = this._getValue(this._options.markSymbolicLink, false); this.throwErrorOnBrokenSymbolicLink = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true); } _getValue(option, value) { return option !== null && option !== void 0 ? option : value; } } exports.default = Settings;
Version data entries
42 entries across 42 versions & 3 rubygems