()
| 46 | this.push2saveQ(); |
| 47 | } |
| 48 | getDate() { |
| 49 | let tD = this.date; |
| 50 | tD.year = tD.self.getFullYear(); |
| 51 | tD.month = tD.self.getMonth(); |
| 52 | tD.day = tD.self.getDay(); |
| 53 | tD.time = tD.self.now(); |
| 54 | tD.tot = tD.year + '/' + tD.month + '/' + tD.day + '/' + tD.time; |
| 55 | // console.log('tD.tot:', tD.tot); |
| 56 | } |
| 57 | push2saveQ(_obj) { |
| 58 | this.saveQ.push(_obj); |
| 59 | } |
no outgoing calls
no test coverage detected