(db, type, time)
| 6 | var dbs = []; |
| 7 | |
| 8 | function AddDB(db, type, time) { |
| 9 | dbs.push({ |
| 10 | id: db, |
| 11 | orm: false, |
| 12 | type: type, |
| 13 | time: time |
| 14 | }); |
| 15 | } |
| 16 | |
| 17 | function SetDBORM(db, orm) { |
| 18 | dbs.forEach((item, index) => { |
no outgoing calls
no test coverage detected