Lines Matching refs:options
78 const installOpfsVfs = function callee(options){ argument
90 if(!options || 'object'!==typeof options){
91 options = Object.create(null);
94 if(undefined===options.verbose){
95 options.verbose = urlParams.has('opfs-verbose') ? 3 : 2;
97 if(undefined===options.sanityChecks){
98 options.sanityChecks = urlParams.has('opfs-sanity-check');
100 if(undefined===options.proxyUri){
101 options.proxyUri = callee.defaultProxyUri;
104 if('function' === typeof options.proxyUri){
105 options.proxyUri = options.proxyUri();
114 if(options.verbose>level) loggers[level]("OPFS syncer:",...args);
169 const W = new Worker(options.proxyUri);
231 state.verbose = options.verbose;
1263 if(options.sanityChecks){