fix(fs/local): opts is optional

This commit is contained in:
Julien Fontanet 2021-03-23 12:48:49 +01:00
parent 7b15aa5f83
commit 3bb7541361

View File

@ -5,7 +5,7 @@ import { fromEvent, retry } from 'promise-toolbox'
import RemoteHandlerAbstract from './abstract'
export default class LocalHandler extends RemoteHandlerAbstract {
constructor(remote, opts) {
constructor(remote, opts = {}) {
super(remote)
this._retriesOnEagain = {
delay: 1e3,