MCPcopy Index your code
hub / github.com/node-schedule/node-schedule / Range

Function Range

lib/Invocation.js:29–33  ·  view source on GitHub ↗
(start, end, step)

Source from the content-addressed store, hash-verified

27
28/* Range object */
29function Range(start, end, step) {
30 this.start = start || 0;
31 this.end = end || 60;
32 this.step = step || 1;
33}
34
35Range.prototype.contains = function(val) {
36 if (this.step === null || this.step === 1) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…