Lines Matching refs:args
18 const toss = (...args)=>{throw new Error(args.join(' '))}; argument
19 const toss3 = (...args)=>{throw new sqlite3.SQLite3Error(...args)}; argument
104 const dbCtorHelper = function ctor(...args){ argument
131 const opt = ctor.normalizeArgs(...args);
281 const DB = function(...args){ argument
282 dbCtorHelper.apply(this, args);
368 const parseExecArgs = function(db, args){ argument
371 switch(args.length){
373 if('string'===typeof args[0] || util.isSQLableTypedArray(args[0])){
374 out.sql = args[0];
375 }else if(Array.isArray(args[0])){
376 out.sql = args[0];
377 }else if(args[0] && 'object'===typeof args[0]){
378 out.opt = args[0];
383 out.sql = args[0];
384 out.opt = args[1];