(start, end, step)
| 27 | |
| 28 | /* Range object */ |
| 29 | function Range(start, end, step) { |
| 30 | this.start = start || 0; |
| 31 | this.end = end || 60; |
| 32 | this.step = step || 1; |
| 33 | } |
| 34 | |
| 35 | Range.prototype.contains = function(val) { |
| 36 | if (this.step === null || this.step === 1) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…