chore(fs): remove unnecessary default params

This commit is contained in:
Julien Fontanet 2018-12-05 14:29:35 +01:00
parent 055d1e81da
commit ff014df231
2 changed files with 6 additions and 6 deletions

View File

@ -55,7 +55,7 @@ export default class LocalHandler extends RemoteHandlerAbstract {
return stats.size
}
async _list(dir = '.') {
async _list(dir) {
return fs.readdir(this._getFilePath(dir))
}

View File

@ -70,7 +70,7 @@ export default class SmbHandler extends RemoteHandlerAbstract {
}
}
async _createOutputStream(file, options = {}) {
async _createOutputStream(file, options) {
if (typeof file !== 'string') {
file = file.path
}
@ -95,7 +95,7 @@ export default class SmbHandler extends RemoteHandlerAbstract {
}
}
async _createReadStream(file, options = {}) {
async _createReadStream(file, options) {
if (typeof file !== 'string') {
file = file.path
}
@ -131,7 +131,7 @@ export default class SmbHandler extends RemoteHandlerAbstract {
}
}
async _list(dir = '.') {
async _list(dir) {
const client = this._getClient()
try {
return await client.readdir(this._getFilePath(dir))
@ -151,7 +151,7 @@ export default class SmbHandler extends RemoteHandlerAbstract {
}
}
async _outputFile(file, data, options = {}) {
async _outputFile(file, data, options) {
const path = this._getFilePath(file)
const dir = this._dirname(path)
@ -186,7 +186,7 @@ export default class SmbHandler extends RemoteHandlerAbstract {
.catch(normalizeError)
}
async _readFile(file, options = {}) {
async _readFile(file, options) {
const client = this._getClient()
try {
return await client.readFile(this._getFilePath(file), options)