(...args)
| 125 | } |
| 126 | |
| 127 | labels(...args) { |
| 128 | const labels = getLabels(this.labelNames, args); |
| 129 | validateLabel(this.labelNames, labels); |
| 130 | return { |
| 131 | inc: this.inc.bind(this, labels), |
| 132 | dec: this.dec.bind(this, labels), |
| 133 | set: this.set.bind(this, labels), |
| 134 | setToCurrentTime: this.setToCurrentTime.bind(this, labels), |
| 135 | startTimer: this.startTimer.bind(this, labels), |
| 136 | }; |
| 137 | } |
| 138 | |
| 139 | remove(...args) { |
| 140 | const labels = getLabels(this.labelNames, args); |
no outgoing calls
no test coverage detected